Skip to content

Commit

Permalink
disable executable option to some projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Banyc committed Jun 29, 2020
1 parent 4babf20 commit 5c944ca
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 8 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,16 @@ Buffer Manager负责缓冲区的管理,主要功能有:

DB Files指构成数据库的所有数据文件,主要由记录数据文件、索引数据文件和Catalog数据文件组成。

### TODO
## Build Project

1. Set `pwd` to the project folder.
1. Make sure to uncomment the line in file `*.csproj`:
```csharp
<!-- <OutputType>Exe</OutputType> -->
```
1. Run `dotnet run`

## TODO

- [x] Support `create database <DATABASE_NAME>`
- [x] Support `drop database <DATABASE_NAME>`
Expand Down
2 changes: 1 addition & 1 deletion src/MiniSQL.Api/MiniSQL.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</ItemGroup>

<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- <OutputType>Exe</OutputType> -->
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/MiniSQL.BufferManager/MiniSQL.BufferManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</ItemGroup>

<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- <OutputType>Exe</OutputType> -->
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/MiniSQL.CatalogManager/MiniSQL.CatalogManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</ItemGroup>

<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- <OutputType>Exe</OutputType> -->
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/MiniSQL.IndexManager/MiniSQL.IndexManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</ItemGroup>

<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- <OutputType>Exe</OutputType> -->
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/MiniSQL.Interpreter/MiniSQL.Interpreter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</ItemGroup>

<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- <OutputType>Exe</OutputType> -->
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/MiniSQL.Library/MiniSQL.Library.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- <OutputType>Exe</OutputType> -->
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/MiniSQL.RecordManager/MiniSQL.RecordManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</ItemGroup>

<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- <OutputType>Exe</OutputType> -->
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

Expand Down

0 comments on commit 5c944ca

Please sign in to comment.