-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSQLStructDiff.csproj
More file actions
28 lines (23 loc) · 878 Bytes
/
Copy pathSQLStructDiff.csproj
File metadata and controls
28 lines (23 loc) · 878 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>appicon.ico</ApplicationIcon>
</PropertyGroup>
<!-- O Core vive numa subpasta; impede que o glob recursivo da UI engula seus fontes/obj. -->
<ItemGroup>
<Compile Remove="SQLStructDiff.Core\**\*.cs" />
<Content Remove="SQLStructDiff.Core\**\*" />
<None Remove="SQLStructDiff.Core\**\*" />
<EmbeddedResource Remove="SQLStructDiff.Core\**\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DiffPlex" Version="1.9.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="SQLStructDiff.Core\SQLStructDiff.Core.csproj" />
</ItemGroup>
</Project>