-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCS2Cheat.csproj
35 lines (30 loc) · 1.38 KB
/
CS2Cheat.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
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<UseWpf>true</UseWpf>
<LangVersion>latest</LangVersion>
<Platforms>AnyCPU;x64;x86</Platforms>
<ApplicationIcon>assets\logo.ico</ApplicationIcon>
<Version>1.7</Version>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<PlatformTarget>x64</PlatformTarget>
<Prefer32bit>false</Prefer32bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GameOverlay.Net" Version="4.3.1"/>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
<PackageReference Include="Overlay.NET" Version="1.0.2"/>
<PackageReference Include="PresentationFramework" Version="4.6.0"/>
<PackageReference Include="SharpDX.Direct3D9" Version="4.2.0"/>
<PackageReference Include="SharpDX.DXGI" Version="4.2.0"/>
</ItemGroup>
</Project>