mirror of
https://gitlab.com/Syroot/Worms.git
synced 2025-01-13 07:18:00 +03:00
Relax NuGet package dependencies where possible.
This commit is contained in:
parent
7e3fcb766c
commit
66d4d15305
@ -3,9 +3,9 @@
|
||||
<PropertyGroup>
|
||||
<AssemblyName>Syroot.Worms.Armageddon.ProjectX</AssemblyName>
|
||||
<Description>.NET library for loading and modifying files of Worms Armageddon ProjectX.</Description>
|
||||
<PackageReleaseNotes>Fix saving files. Uniquely leave open Stream instances when saving into them.</PackageReleaseNotes>
|
||||
<PackageReleaseNotes>Fix issues when loading and saving some formats.</PackageReleaseNotes>
|
||||
<PackageTags>$(PackageTags);project x;worms armageddon</PackageTags>
|
||||
<Version>3.1.1</Version>
|
||||
<Version>3.2.0</Version>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Syroot.Worms.Armageddon\Syroot.Worms.Armageddon.csproj" />
|
||||
|
@ -3,9 +3,9 @@
|
||||
<PropertyGroup>
|
||||
<AssemblyName>Syroot.Worms.Armageddon</AssemblyName>
|
||||
<Description>.NET library for loading and modifying files of Team17's Worms Armageddon.</Description>
|
||||
<PackageReleaseNotes>Simplify scheme fall damage and water rise usage.</PackageReleaseNotes>
|
||||
<PackageReleaseNotes>Fix issues when loading and saving some formats. Simplify Scheme usage.</PackageReleaseNotes>
|
||||
<PackageTags>$(PackageTags);worms armageddon</PackageTags>
|
||||
<Version>3.1.1</Version>
|
||||
<Version>3.2.0</Version>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Syroot.Worms\Syroot.Worms.csproj" />
|
||||
|
@ -3,9 +3,9 @@
|
||||
<PropertyGroup>
|
||||
<AssemblyName>Syroot.Worms.Mgame</AssemblyName>
|
||||
<Description>.NET library for loading and modifying files of Mgame Worms clients.</Description>
|
||||
<PackageReleaseNotes>Fix saving files. Uniquely leave open Stream instances when saving into them.</PackageReleaseNotes>
|
||||
<PackageReleaseNotes>Fix issues when loading and saving some formats.</PackageReleaseNotes>
|
||||
<PackageTags>$(PackageTags);online worms;worms world party aqua</PackageTags>
|
||||
<Version>3.1.1</Version>
|
||||
<Version>3.2.0</Version>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Syroot.Worms\Syroot.Worms.csproj" />
|
||||
|
@ -3,9 +3,9 @@
|
||||
<PropertyGroup>
|
||||
<AssemblyName>Syroot.Worms.WorldParty</AssemblyName>
|
||||
<Description>.NET library for loading and modifying files of Team17's Worms World Party.</Description>
|
||||
<PackageReleaseNotes>Fix saving files. Uniquely leave open Stream instances when saving into them.</PackageReleaseNotes>
|
||||
<PackageReleaseNotes>Fix issues when loading and saving some formats.</PackageReleaseNotes>
|
||||
<PackageTags>$(PackageTags);worms world party</PackageTags>
|
||||
<Version>3.1.1</Version>
|
||||
<Version>3.2.0</Version>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Syroot.Worms\Syroot.Worms.csproj" />
|
||||
|
@ -3,9 +3,9 @@
|
||||
<PropertyGroup>
|
||||
<AssemblyName>Syroot.Worms.Worms2</AssemblyName>
|
||||
<Description>.NET library for loading and modifying files of Team17's Worms 2.</Description>
|
||||
<PackageReleaseNotes>Fix saving files. Uniquely leave open Stream instances when saving into them.</PackageReleaseNotes>
|
||||
<PackageReleaseNotes>Fix issues when loading and saving some formats.</PackageReleaseNotes>
|
||||
<PackageTags>$(PackageTags);worms 2</PackageTags>
|
||||
<Version>3.1.1</Version>
|
||||
<Version>3.2.0</Version>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Syroot.Worms\Syroot.Worms.csproj" />
|
||||
|
@ -4,16 +4,16 @@
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<AssemblyName>Syroot.Worms</AssemblyName>
|
||||
<Description>.NET library for loading and modifying files of Team17 Worms games.</Description>
|
||||
<PackageReleaseNotes>Fix saving files. Uniquely leave open Stream instances when saving into them.</PackageReleaseNotes>
|
||||
<Version>3.1.1</Version>
|
||||
<PackageReleaseNotes>Fix issues when loading and saving some formats.</PackageReleaseNotes>
|
||||
<Version>3.2.0</Version>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Syroot.BinaryData.Serialization" Version="[5.2.0, 6)" />
|
||||
<PackageReference Include="Syroot.BinaryData" Version="[5.2.0, 6)" />
|
||||
<PackageReference Include="System.Drawing.Common" Version="[4.7.0, 5)" />
|
||||
<PackageReference Include="System.Text.Encoding.CodePages" Version="[4.7.1, 5)" />
|
||||
<PackageReference Include="Syroot.BinaryData.Serialization" Version="5.2.0" />
|
||||
<PackageReference Include="Syroot.BinaryData" Version="5.2.0" />
|
||||
<PackageReference Include="System.Drawing.Common" Version="4.5.0" />
|
||||
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.5.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
|
||||
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.0" />
|
||||
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.0.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -7,13 +7,15 @@
|
||||
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="[3.1.5, 4)" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="[3.1.5, 4)" />
|
||||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="[3.1.5, 4)" />
|
||||
<PackageReference Include="Syroot.BinaryData.Memory" Version="[5.2.2, 6)" />
|
||||
<PackageReference Include="System.Text.Encoding.CodePages" Version="[4.7.1, 5)" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.5" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.5" />
|
||||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="3.1.5" />
|
||||
<PackageReference Include="Syroot.BinaryData.Memory" Version="5.2.2" />
|
||||
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.7.1" />
|
||||
<ProjectReference Include="..\..\library\Syroot.Worms.Mgame\Syroot.Worms.Mgame.csproj" />
|
||||
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Update="ServerConfig.json">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
|
@ -15,13 +15,15 @@
|
||||
<Version>1.0.0</Version>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Costura.Fody" Version="[4.1.0, 5)" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="[3.1.5, 4)" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="[3.1.5, 4)" />
|
||||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="[3.1.5, 4)" />
|
||||
<PackageReference Include="Costura.Fody" Version="4.1.0" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.5" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.5" />
|
||||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="3.1.5" />
|
||||
<ProjectReference Include="..\..\library\Syroot.Worms.Mgame\Syroot.Worms.Mgame.csproj" />
|
||||
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Update="LauncherConfig.json">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
|
@ -4,7 +4,6 @@
|
||||
<TargetFramework>netcoreapp3</TargetFramework>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Syroot.BinaryData" Version="5.2.0" />
|
||||
<ProjectReference Include="..\..\library\Syroot.Worms.Armageddon.ProjectX\Syroot.Worms.Armageddon.ProjectX.csproj" />
|
||||
<ProjectReference Include="..\..\library\Syroot.Worms.Armageddon\Syroot.Worms.Armageddon.csproj" />
|
||||
<ProjectReference Include="..\..\library\Syroot.Worms.Mgame\Syroot.Worms.Mgame.csproj" />
|
||||
|
@ -6,15 +6,12 @@
|
||||
<TargetFramework>net472</TargetFramework>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="SharpShell" Version="[2.7.2, 3)" />
|
||||
<PackageReference Include="StrongNamer" Version="[0.2.5, 1)" />
|
||||
<PackageReference Include="SharpShell" Version="2.7.2" />
|
||||
<PackageReference Include="StrongNamer" Version="0.2.5" />
|
||||
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Update="Install.bat">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
<None Update="Uninstall.bat">
|
||||
<None Update="*.bat">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
Loading…
x
Reference in New Issue
Block a user