This also adds remote raspberry pi debugging with default install details. More testing is required as MonoMod may not be working for arm64 still CI might not work yet either
20 lines
620 B
XML
20 lines
620 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
|
|
<PackageReference Include="coverlet.collector" Version="3.1.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\TShockLauncher\TShockLauncher.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|