-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCFRezManager.csproj
More file actions
45 lines (40 loc) · 1.52 KB
/
Copy pathCFRezManager.csproj
File metadata and controls
45 lines (40 loc) · 1.52 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
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>assets\app-icon.ico</ApplicationIcon>
<Version>1.2.3</Version>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<FileVersion>1.2.3.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Pak-CF\**" />
<Compile Remove="artifacts\**" />
<EmbeddedResource Remove="Pak-CF\**" />
<EmbeddedResource Remove="artifacts\**" />
<None Remove="Pak-CF\**" />
<None Remove="artifacts\**" />
<Page Remove="Pak-CF\**" />
<Page Remove="artifacts\**" />
</ItemGroup>
<ItemGroup>
<None Update="assets\*.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="licenses\*.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fmod5Sharp" Version="3.1.0" />
<PackageReference Include="NVorbis" Version="0.10.5" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
<PackageReference Include="SharpCompress" Version="0.48.0" />
<PackageReference Include="GrindCore.SharpCompress" Version="0.48.0" Aliases="GrindCoreSharpCompress" />
</ItemGroup>
</Project>