mirror of
https://git.tonybark.com/tonytins/Longhorn.git
synced 2026-02-10 16:24:51 -05:00
Compare commits
No commits in common. "8312ada370cb992c047b6782ae7e4afe83a9e653" and "7d823aa78b838cfdf64f971a0f5ed028a495e6bc" have entirely different histories.
8312ada370
...
7d823aa78b
5 changed files with 14 additions and 40 deletions
|
|
@ -1,6 +0,0 @@
|
|||
<Project>
|
||||
<PropertyGroup>
|
||||
<!-- Allow running on any .NET 8+ runtime (8, 9, 10, ...) -->
|
||||
<RollForward>LatestMajor</RollForward>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
|
@ -1,46 +1,39 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<IsPackable>false</IsPackable>
|
||||
<RollForward>LatestMajor</RollForward>
|
||||
</PropertyGroup>
|
||||
|
||||
<!-- 2dog packages -->
|
||||
<ItemGroup>
|
||||
<PackageReference Include="2dog" Version="0.1.14-pre" />
|
||||
<PackageReference Include="2dog.xunit" Version="0.1.14-pre" />
|
||||
<PackageReference Include="GodotSharp" Version="4.6.0" />
|
||||
<PackageReference Include="2dog" Version="0.1.10-pre"/>
|
||||
<PackageReference Include="2dog.xunit" Version="0.1.10-pre"/>
|
||||
<PackageReference Include="GodotSharp" Version="4.6.0"/>
|
||||
</ItemGroup>
|
||||
|
||||
<!-- Platform-specific native library packages -->
|
||||
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))">
|
||||
<PackageReference Include="2dog.win-x64" Version="0.1.10-pre" />
|
||||
<PackageReference Include="2dog.win-x64" Version="0.1.10-pre"/>
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))">
|
||||
<PackageReference Include="2dog.linux-x64" Version="0.1.10-pre" />
|
||||
<PackageReference Include="2dog.linux-x64" Version="0.1.10-pre"/>
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))">
|
||||
<PackageReference Include="2dog.osx-arm64" Version="0.1.11-pre" />
|
||||
<PackageReference Include="2dog.osx-arm64" Version="0.1.10-pre"/>
|
||||
</ItemGroup>
|
||||
|
||||
<!-- Test framework packages -->
|
||||
<ItemGroup>
|
||||
<PackageReference Include="coverlet.collector" Version="6.0.4">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
|
||||
<PackageReference Include="xunit" Version="2.9.3" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="coverlet.collector" Version="6.0.2"/>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0"/>
|
||||
<PackageReference Include="xunit" Version="2.9.2"/>
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2"/>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Using Include="Xunit" />
|
||||
<Using Include="Xunit"/>
|
||||
</ItemGroup>
|
||||
|
||||
<!-- Godot project location -->
|
||||
|
|
|
|||
|
|
@ -1,10 +1,4 @@
|
|||
<Solution>
|
||||
<Folder Name="/Solution Items/">
|
||||
<File Path=".editorconfig" />
|
||||
<File Path="Directory.Build.props" />
|
||||
<File Path="global.json" />
|
||||
<File Path="README.md" />
|
||||
</Folder>
|
||||
<Project Path="Longhorn.Tests/Longhorn.Tests.csproj" />
|
||||
<Project Path="Longhorn/Longhorn.csproj" />
|
||||
</Solution>
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<OutputType>Exe</OutputType>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<IsPackable>false</IsPackable>
|
||||
<RollForward>LatestMajor</RollForward>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="2dog" Version="0.1.14-pre" />
|
||||
<PackageReference Include="2dog" Version="0.1.10-pre"/>
|
||||
</ItemGroup>
|
||||
|
||||
<!-- Godot project location -->
|
||||
|
|
|
|||
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"sdk": {
|
||||
"version": "8.0.100",
|
||||
"rollForward": "latestMajor"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue