-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRustOptimizer.csproj
More file actions
44 lines (36 loc) · 1.09 KB
/
RustOptimizer.csproj
File metadata and controls
44 lines (36 loc) · 1.09 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>ROIcon.ico</ApplicationIcon>
<PackageIcon>ROIcon.ico</PackageIcon>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="client.cfg" />
<None Remove="UserCFG.ini" />
</ItemGroup>
<ItemGroup>
<Content Include="ROIcon.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="client.cfg" />
<EmbeddedResource Include="UserCFG.ini" />
</ItemGroup>
<ItemGroup>
<Folder Include="GUI\" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\Pictures\ROIcon.ico">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="9.0.9" />
</ItemGroup>
</Project>