alttpr-opentracker: 1.8.5 -> 1.8.6

This commit is contained in:
GGG
2025-01-04 01:35:17 +01:00
committed by Weijia Wang
parent 7bf295f2f8
commit ea961ad641
3 changed files with 443 additions and 495 deletions
File diff suppressed because it is too large Load Diff
+7 -15
View File
@@ -17,29 +17,21 @@
}:
buildDotnetModule rec {
pname = "opentracker";
version = "1.8.5";
version = "1.8.6";
src = fetchFromGitHub {
owner = "trippsc2";
repo = pname;
repo = "opentracker";
tag = version;
hash = "sha512-nWkPgVYdnBJibyJRdLPe3O3RioDPbzumSritRejmr4CeiPb7aUTON7HjivcV/GKor1guEYu+TJ+QxYrqO/eppg==";
hash = "sha256-4EBn3BX5tX+yPUjoNFQSls9CwTCd6MpvcBoUKwRndRo=";
};
patches = [./remove-project.patch];
dotnet-sdk = dotnetCorePackages.sdk_6_0;
dotnet-sdk = dotnetCorePackages.sdk_8_0;
nugetDeps = ./deps.json;
projectFile = "OpenTracker.sln";
executables = ["OpenTracker"];
doCheck = true;
disabledTests = [
"OpenTracker.UnitTests.Models.Nodes.Factories.SLightWorldConnectionFactoryTests.GetNodeConnections_ShouldReturnExpectedValue"
"OpenTracker.UnitTests.Models.Sections.Factories.ItemSectionFactoryTests.GetItemSection_ShouldReturnExpected"
];
projectFile = "src/OpenTracker/OpenTracker.csproj";
executables = [ "OpenTracker" ];
nativeBuildInputs = [
autoPatchelfHook
@@ -86,6 +78,6 @@ buildDotnetModule rec {
license = licenses.mit;
maintainers = [ ];
mainProgram = "OpenTracker";
platforms = ["x86_64-linux"];
platforms = [ "x86_64-linux" ];
};
}
@@ -1,14 +0,0 @@
diff --git a/OpenTracker.sln b/OpenTracker.sln
index 0a8c438..77124e1 100644
--- a/OpenTracker.sln
+++ b/OpenTracker.sln
@@ -4,9 +4,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
VisualStudioVersion = 16.0.29806.167
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenTracker", "OpenTracker\OpenTracker.csproj", "{9D32A24F-7FF0-4632-B663-5AD2D64A6C87}"
- ProjectSection(ProjectDependencies) = postProject
- {732A9A56-32B4-4149-B3A5-F2A4F48293D3} = {732A9A56-32B4-4149-B3A5-F2A4F48293D3}
- EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenTracker.Models", "OpenTracker.Models\OpenTracker.Models.csproj", "{5DB05A1F-56E3-4035-8898-5CFB22DB3568}"
EndProject