-
Notifications
You must be signed in to change notification settings - Fork 0
/
CADHub.csproj
33 lines (28 loc) · 898 Bytes
/
CADHub.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<UserSecretsId>5ea86915-c0e4-48c5-bcbf-b4153cc58145</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<None Remove="test.bin" />
<None Remove="test2.bin" />
<None Remove="test3.bin" />
</ItemGroup>
<ItemGroup>
<Content Include="test.bin">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="test2.bin">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="test3.bin">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1823.32" />
</ItemGroup>
</Project>