Skip to content

Commit

Permalink
Fix invalid NuGet
Browse files Browse the repository at this point in the history
  • Loading branch information
roo-oliv committed Apr 4, 2024
1 parent 6b94aeb commit 4fc8b19
Show file tree
Hide file tree
Showing 15 changed files with 48 additions and 16 deletions.
Binary file added Icon/monodream-logo.bmp
Binary file not shown.
Binary file added Icon/monodream-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Icon/monodreams-logo.blend
Binary file not shown.
Binary file added Icon/monodreams-logo.blend1
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
[assembly: System.Reflection.AssemblyCompanyAttribute("MonoDreams.Tests")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+55db9b8d3d4b1ef10a3943f24f4a0f2dd60b3151")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6b94aeb3049431a6f2f201597d3a83d0df1927be")]
[assembly: System.Reflection.AssemblyProductAttribute("MonoDreams.Tests")]
[assembly: System.Reflection.AssemblyTitleAttribute("MonoDreams.Tests")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6745a34f8d98306c28867212acd06cba0b4467b897f0cd0bb0ad33609cdd9b97
531f43e8eac00cb83d025048d8c7af641bd8b2ce323d869c9a34ae74c0a464ef
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,11 @@
"target": "Package",
"version": "[1.1.1, )"
},
"Microsoft.SourceLink.GitHub": {
"suppressParent": "All",
"target": "Package",
"version": "[1.1.1-*, )"
},
"MinVer": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
Expand Down
2 changes: 1 addition & 1 deletion MonoDreams.Tests/obj/project.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "x6HFStvtA/HPhQiYQkIYo07y0k772VBN7Bt+FlKlaaOVgcVd8QNds3okBzOkGu0vL+L/RczQduGmIXNZxThE2A==",
"dgSpecHash": "bWmuOH5ZZ+rKIGcb/8Y7d/nju+7KlfaterjC06KGRJC5t7gZ3uRYAJW/1CWCYPFY9SN6M9DWJ8syDbsaYGDaLA==",
"success": true,
"projectFilePath": "/home/rodrigo/git/roo-oliv/monodreams/MonoDreams.Tests/MonoDreams.Tests.csproj",
"expectedPackageFiles": [
Expand Down
2 changes: 1 addition & 1 deletion MonoDreams.Tests/obj/rider.project.model.nuget.info
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17121783099198820
17122612279394299
2 changes: 1 addition & 1 deletion MonoDreams.Tests/obj/rider.project.restore.info
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17121782321873679
17122612894097984
Binary file modified MonoDreams/Icon.bmp
Binary file not shown.
Binary file modified MonoDreams/Icon.ico
Binary file not shown.
Binary file added MonoDreams/Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 28 additions & 2 deletions MonoDreams/MonoDreams.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
<PackageProjectUrl>https://github.com/roo-oliv/monodreams</PackageProjectUrl>
<PackageTags>game, engine, library, monogame, 2d, xna, monodreams</PackageTags>
</PropertyGroup>
<PropertyGroup>
<PackageIcon>Icon.png</PackageIcon>
</PropertyGroup>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
Expand All @@ -43,21 +46,44 @@
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">True</ContinuousIntegrationBuild>
</PropertyGroup>

<PropertyGroup>
<!-- Optional: Declare that the Repository URL can be published to NuSpec -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>

<!-- Optional: Embed source files that are not tracked by the source control manager to the PDB -->
<!-- This is useful if you generate files during the build -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>

<!-- Generate symbol packages (.snupkg) -->
<!-- You must publish both packages, the package that contains the DLL (.nupkg) and the one that contains the symbols (.snupkg) -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1-*" PrivateAssets="All"/>
</ItemGroup>

<ItemGroup>
<!-- Add a README.md next to the csproj -->
<None Include="README.md" Pack="true" PackagePath=""/>
</ItemGroup>
<ItemGroup>
<None Remove="Icon.ico" />
<None Remove="Icon.bmp" />
<None Remove="Core\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Icon.ico" />
<EmbeddedResource Include="Icon.bmp" />
<EmbeddedResource Remove="Core\**" />
</ItemGroup>
<ItemGroup>
<None Include="Icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DefaultEcs" Version="0.17.2" />
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1">
Expand Down
19 changes: 10 additions & 9 deletions MonoDreams/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@
"Microsoft.SourceLink.GitLab": "1.1.1"
}
},
"Microsoft.SourceLink.GitHub": {
"type": "Direct",
"requested": "[1.1.1-*, )",
"resolved": "1.1.1",
"contentHash": "IaJGnOv/M7UQjRJks7B6p7pbPnOwisYGOIzqCz5ilGFTApZ3ktOR+6zJ12ZRPInulBmdAf1SrGdDG2MU8g6XTw==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "1.1.1",
"Microsoft.SourceLink.Common": "1.1.1"
}
},
"MinVer": {
"type": "Direct",
"requested": "[5.0.0, )",
Expand Down Expand Up @@ -118,15 +128,6 @@
"resolved": "1.1.1",
"contentHash": "WMcGpWKrmJmzrNeuaEb23bEMnbtR/vLmvZtkAP5qWu7vQsY59GqfRJd65sFpBszbd2k/bQ8cs8eWawQKAabkVg=="
},
"Microsoft.SourceLink.GitHub": {
"type": "Transitive",
"resolved": "1.1.1",
"contentHash": "IaJGnOv/M7UQjRJks7B6p7pbPnOwisYGOIzqCz5ilGFTApZ3ktOR+6zJ12ZRPInulBmdAf1SrGdDG2MU8g6XTw==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "1.1.1",
"Microsoft.SourceLink.Common": "1.1.1"
}
},
"Microsoft.SourceLink.GitLab": {
"type": "Transitive",
"resolved": "1.1.1",
Expand Down

0 comments on commit 4fc8b19

Please sign in to comment.