-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTrackmaniaRandomMapServer.csproj
More file actions
48 lines (39 loc) · 1.58 KB
/
TrackmaniaRandomMapServer.csproj
File metadata and controls
48 lines (39 loc) · 1.58 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
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<UserSecretsId>da3cf941-4962-4d2f-8c71-8776d2a843d3</UserSecretsId>
</PropertyGroup>
<PropertyGroup>
<DockerfileRunArguments>-v UserData:/server/UserData --network=trackmania</DockerfileRunArguments>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GbxRemote.Net" Version="5.0.2" />
<PackageReference Include="ManiaTemplates" Version="0.0.24-alpha" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
<PackageReference Include="NetCord" Version="1.0.0-alpha.349" />
<!--<PackageReference Include="SSH.NET" Version="2024.0.0" />-->
</ItemGroup>
<ItemGroup>
<None Update="Manialinks\rmtwidget.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Manialinks\scoreboard.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Manialinks\startrmt.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Remove="Manialinks\**\*" />
<EmbeddedResource Include="Manialinks\**\*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NadeoAPI\NadeoAPI.csproj" />
<ProjectReference Include="..\TmxRestClient\TrackmaniaExchangeAPI.csproj" />
</ItemGroup>
</Project>