-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplicationEncryption.csproj
More file actions
35 lines (29 loc) · 986 Bytes
/
ApplicationEncryption.csproj
File metadata and controls
35 lines (29 loc) · 986 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationIcon>Recource\FIBERen.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="Recource\FIBEREn.ico" />
<None Remove="Recource\NavyBlue MultiCam.png" />
<None Remove="View\NavyBlue MultiCam.png" />
</ItemGroup>
<ItemGroup>
<Content Include="Recource\FIBEREn.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Recource\NavyBlue MultiCam.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Sodium.Core" Version="1.4.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="View\NavyBlue MultiCam.png" />
</ItemGroup>
</Project>