-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSharpMod.ConsolePlayer.csproj
More file actions
42 lines (34 loc) · 1.17 KB
/
Copy pathSharpMod.ConsolePlayer.csproj
File metadata and controls
42 lines (34 loc) · 1.17 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyVersion>2026.6.22.84</AssemblyVersion>
<FileVersion>2026.6.22.84</FileVersion>
<OutputPath>..\Release\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\SharpMod\SharpMod.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="OpenTK" Version="4.9.4" />
<PackageReference Include="PrettyConsole" Version="6.0.2" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="SharpModConsolePlayer.Tests" />
</ItemGroup>
<ItemGroup>
<None Update="OpenTK.dll.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PayloadPolicy Include="PrettyConsole" Tag="PrettyConsoleExpert" CopyOnBuild="false" />
</ItemGroup>
<PropertyGroup>
<PayloadCopyEnabled>false</PayloadCopyEnabled>
</PropertyGroup>
</Project>