forked from brianmiller/phvalheim-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phvalheim-client.csproj
49 lines (41 loc) · 1.55 KB
/
phvalheim-client.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>2.0.10</Version>
<Authors>posixone</Authors>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
<Configurations>Debug;Windows-Release;Linux-Release</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>True</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Linux-Release|AnyCPU'">
<Optimize>True</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows-Release|AnyCPU'">
<Optimize>True</Optimize>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent Condition="'$(Configuration)' == 'Windows-Release'">
echo "Windows build detected.
call ..\..\..\..\builders\post_build_vss.bat $(MSBuildProjectDirectory) $(Configuration)
</PostBuildEvent>
<PostBuildEvent Condition="'$(Configuration)' == 'Linux-Release'">
echo "Linux build detected."
</PostBuildEvent>
</PropertyGroup>
<ItemGroup>
<Folder Include="ProgressBar\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Octokit" Version="4.0.3" />
</ItemGroup>
</Project>