-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCodeGenerator.csproj
More file actions
36 lines (30 loc) · 977 Bytes
/
CodeGenerator.csproj
File metadata and controls
36 lines (30 loc) · 977 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Instances\**" />
<Compile Remove="Templates\**" />
<EmbeddedResource Remove="Instances\**" />
<EmbeddedResource Remove="Templates\**" />
<None Remove="Instances\**" />
<None Remove="Templates\**" />
</ItemGroup>
<ItemGroup>
<None Remove="ini.txt" />
</ItemGroup>
<ItemGroup>
<Content Include="ini.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Dapper.Contrib" Version="2.0.78" />
<PackageReference Include="Npgsql" Version="8.0.2" />
</ItemGroup>
</Project>