Skip to content

Commit 5c944ca

Browse files
committed
disable executable option to some projects
1 parent 4babf20 commit 5c944ca

File tree

8 files changed

+17
-8
lines changed

8 files changed

+17
-8
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,16 @@ Buffer Manager负责缓冲区的管理,主要功能有:
140140

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

143-
### TODO
143+
## Build Project
144+
145+
1. Set `pwd` to the project folder.
146+
1. Make sure to uncomment the line in file `*.csproj`:
147+
```csharp
148+
<!-- <OutputType>Exe</OutputType> -->
149+
```
150+
1. Run `dotnet run`
151+
152+
## TODO
144153

145154
- [x] Support `create database <DATABASE_NAME>`
146155
- [x] Support `drop database <DATABASE_NAME>`

src/MiniSQL.Api/MiniSQL.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</ItemGroup>
1010

1111
<PropertyGroup>
12-
<OutputType>Exe</OutputType>
12+
<!-- <OutputType>Exe</OutputType> -->
1313
<TargetFramework>netcoreapp3.1</TargetFramework>
1414
</PropertyGroup>
1515

src/MiniSQL.BufferManager/MiniSQL.BufferManager.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</ItemGroup>
66

77
<PropertyGroup>
8-
<OutputType>Exe</OutputType>
8+
<!-- <OutputType>Exe</OutputType> -->
99
<TargetFramework>netcoreapp3.1</TargetFramework>
1010
</PropertyGroup>
1111

src/MiniSQL.CatalogManager/MiniSQL.CatalogManager.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</ItemGroup>
77

88
<PropertyGroup>
9-
<OutputType>Exe</OutputType>
9+
<!-- <OutputType>Exe</OutputType> -->
1010
<TargetFramework>netcoreapp3.1</TargetFramework>
1111
</PropertyGroup>
1212

src/MiniSQL.IndexManager/MiniSQL.IndexManager.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</ItemGroup>
77

88
<PropertyGroup>
9-
<OutputType>Exe</OutputType>
9+
<!-- <OutputType>Exe</OutputType> -->
1010
<TargetFramework>netcoreapp3.1</TargetFramework>
1111
</PropertyGroup>
1212

src/MiniSQL.Interpreter/MiniSQL.Interpreter.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</ItemGroup>
1010

1111
<PropertyGroup>
12-
<OutputType>Exe</OutputType>
12+
<!-- <OutputType>Exe</OutputType> -->
1313
<TargetFramework>netcoreapp3.1</TargetFramework>
1414
</PropertyGroup>
1515

src/MiniSQL.Library/MiniSQL.Library.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
4+
<!-- <OutputType>Exe</OutputType> -->
55
<TargetFramework>netcoreapp3.1</TargetFramework>
66
</PropertyGroup>
77

src/MiniSQL.RecordManager/MiniSQL.RecordManager.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</ItemGroup>
88

99
<PropertyGroup>
10-
<OutputType>Exe</OutputType>
10+
<!-- <OutputType>Exe</OutputType> -->
1111
<TargetFramework>netcoreapp3.1</TargetFramework>
1212
</PropertyGroup>
1313

0 commit comments

Comments
 (0)