-
Notifications
You must be signed in to change notification settings - Fork 0
/
bspPack.csproj
34 lines (28 loc) · 1016 Bytes
/
bspPack.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Version>0.3.2</Version>
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
<SelfContained>true</SelfContained>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'win-x64'">
<OutputPath>bin/Windows</OutputPath>
<PublishDir>publish/win-x64</PublishDir>
</PropertyGroup>
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64'">
<OutputPath>bin/Linux</OutputPath>
<PublishDir>publish/linux-x64</PublishDir>
</PropertyGroup>
<ItemGroup>
<None Update="Keys\*.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Glob" Version="1.1.9" />
<PackageReference Include="ValveKeyValue" Version="0.11.0.378" />
</ItemGroup>
</Project>