-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDbSyncKit.Docs.csproj
More file actions
41 lines (35 loc) · 1.83 KB
/
DbSyncKit.Docs.csproj
File metadata and controls
41 lines (35 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="input\NewFolder\**" />
<EmbeddedResource Remove="input\NewFolder\**" />
<None Remove="input\NewFolder\**" />
</ItemGroup>
<ItemGroup>
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.1.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.1.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="4.1.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.1.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Features" Version="4.1.0" />
<PackageReference Include="Statiq.Docs" Version="1.0.0-beta.17" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DbSyncKit.Core\src\DbSyncKit.Core.csproj" />
<ProjectReference Include="..\DbSyncKit.DB\src\DbSyncKit.DB.csproj" />
<ProjectReference Include="..\DbSyncKit.MSSQL\src\DbSyncKit.MSSQL.csproj" />
<ProjectReference Include="..\DbSyncKit.MySQL\src\DbSyncKit.MySQL.csproj" />
<ProjectReference Include="..\DbSyncKit.PostgreSQL\src\DbSyncKit.PostgreSQL.csproj" />
<ProjectReference Include="..\DbSyncKit.Templates.MSSQL\src\DbSyncKit.Templates.MSSQL.csproj" />
<ProjectReference Include="..\DbSyncKit.Templates.MySQL\src\DbSyncKit.Templates.MySQL.csproj" />
<ProjectReference Include="..\DbSyncKit.Templates.PostgreSQL\src\DbSyncKit.Templates.PostgreSQL.csproj" />
<ProjectReference Include="..\DbSyncKit.Templates\src\DbSyncKit.Templates.csproj" />
</ItemGroup>
</Project>