mirror of
https://gitlab.com/Syroot/Worms.git
synced 2025-05-05 11:19:29 +03:00
Publish split game-related NuGet packages.
This commit is contained in:
parent
717da50d80
commit
0ce2ce387e
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio 15
|
# Visual Studio Version 16
|
||||||
VisualStudioVersion = 15.0.26403.7
|
VisualStudioVersion = 16.0.30204.135
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syroot.Worms", "library\Syroot.Worms\Syroot.Worms.csproj", "{DD76B6AA-5A5A-4FCD-95AA-9552977525A1}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syroot.Worms", "library\Syroot.Worms\Syroot.Worms.csproj", "{DD76B6AA-5A5A-4FCD-95AA-9552977525A1}"
|
||||||
EndProject
|
EndProject
|
||||||
@ -41,6 +41,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syroot.Worms.Mgame.Test", "
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syroot.Worms.Shell", "tool\Syroot.Worms.Shell\Syroot.Worms.Shell.csproj", "{1FAB6B9F-2585-46DC-81C0-579DC808C389}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syroot.Worms.Shell", "tool\Syroot.Worms.Shell\Syroot.Worms.Shell.csproj", "{1FAB6B9F-2585-46DC-81C0-579DC808C389}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = " Solution Items", " Solution Items", "{8A49F314-1011-4819-A8F6-0EDDA94A9C3D}"
|
||||||
|
ProjectSection(SolutionItems) = preProject
|
||||||
|
build.xml = build.xml
|
||||||
|
EndProjectSection
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
37
src/build.xml
Normal file
37
src/build.xml
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<!-- Metadata -->
|
||||||
|
<PropertyGroup>
|
||||||
|
<Authors>Syroot</Authors>
|
||||||
|
<Copyright>(c) Syroot, licensed under MIT</Copyright>
|
||||||
|
<RepositoryType>git</RepositoryType>
|
||||||
|
<RepositoryUrl>https://gitlab.com/Syroot/Worms</RepositoryUrl>
|
||||||
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||||
|
<PackageProjectUrl>https://gitlab.com/Syroot/Worms</PackageProjectUrl>
|
||||||
|
<PackageTags>team17;worms</PackageTags>
|
||||||
|
<Version>3.0.0</Version>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="$(MSBuildThisFileDirectory)..\res\icon.png" Pack="true" PackagePath="" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<!-- Compilation -->
|
||||||
|
<PropertyGroup>
|
||||||
|
<IncludeSymbols>true</IncludeSymbols>
|
||||||
|
<LangVersion>preview</LangVersion>
|
||||||
|
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<!-- Output -->
|
||||||
|
<PropertyGroup>
|
||||||
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
||||||
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||||
|
<OutputPath>$(MSBuildThisFileDirectory)..\bin\$(MSBuildProjectName)</OutputPath>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
||||||
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
||||||
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
@ -1,21 +1,10 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
<Import Project="$(SolutionDir)build.xml" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AssemblyName>Syroot.Worms.Armageddon-ProjectX</AssemblyName>
|
<AssemblyName>Syroot.Worms.Armageddon.ProjectX</AssemblyName>
|
||||||
<Authors>Syroot</Authors>
|
|
||||||
<Copyright>(c) Syroot, licensed under MIT</Copyright>
|
|
||||||
<Description>.NET library for loading and modifying files of Worms Armageddon ProjectX.</Description>
|
<Description>.NET library for loading and modifying files of Worms Armageddon ProjectX.</Description>
|
||||||
<GenerateDocumentationFile Condition="'$(Configuration)'=='Release'">true</GenerateDocumentationFile>
|
<PackageReleaseNotes>Split into game-related packages.</PackageReleaseNotes>
|
||||||
<LangVersion>latest</LangVersion>
|
<PackageTags>$(PackageTags);project x;worms armageddon</PackageTags>
|
||||||
<PackageIconUrl>https://gitlab.com/Syroot/Worms/raw/master/res/icon.png</PackageIconUrl>
|
|
||||||
<PackageId>Syroot.Worms.Armageddon.ProjectX</PackageId>
|
|
||||||
<PackageLicenseUrl>https://gitlab.com/Syroot/Worms/raw/master/LICENSE</PackageLicenseUrl>
|
|
||||||
<PackageProjectUrl>https://gitlab.com/Syroot/Worms</PackageProjectUrl>
|
|
||||||
<PackageReleaseNotes>Initial release.</PackageReleaseNotes>
|
|
||||||
<PackageTags>worms;team17</PackageTags>
|
|
||||||
<RepositoryType>git</RepositoryType>
|
|
||||||
<RepositoryUrl>https://gitlab.com/Syroot/Worms</RepositoryUrl>
|
|
||||||
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
||||||
<Version>2.0.0-alpha1</Version>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Syroot.Worms.Armageddon\Syroot.Worms.Armageddon.csproj" />
|
<ProjectReference Include="..\Syroot.Worms.Armageddon\Syroot.Worms.Armageddon.csproj" />
|
||||||
|
@ -1,21 +1,10 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
<Import Project="$(SolutionDir)build.xml" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AssemblyName>Syroot.Worms.Armageddon</AssemblyName>
|
<AssemblyName>Syroot.Worms.Armageddon</AssemblyName>
|
||||||
<Authors>Syroot</Authors>
|
|
||||||
<Copyright>(c) Syroot, licensed under MIT</Copyright>
|
|
||||||
<Description>.NET library for loading and modifying files of Team17's Worms Armageddon.</Description>
|
<Description>.NET library for loading and modifying files of Team17's Worms Armageddon.</Description>
|
||||||
<GenerateDocumentationFile Condition="'$(Configuration)'=='Release'">true</GenerateDocumentationFile>
|
<PackageReleaseNotes>Split into game-related packages.</PackageReleaseNotes>
|
||||||
<LangVersion>latest</LangVersion>
|
<PackageTags>$(PackageTags);worms armageddon</PackageTags>
|
||||||
<PackageIconUrl>https://gitlab.com/Syroot/Worms/raw/master/res/icon.png</PackageIconUrl>
|
|
||||||
<PackageId>Syroot.Worms.Armageddon</PackageId>
|
|
||||||
<PackageLicenseUrl>https://gitlab.com/Syroot/Worms/raw/master/LICENSE</PackageLicenseUrl>
|
|
||||||
<PackageProjectUrl>https://gitlab.com/Syroot/Worms</PackageProjectUrl>
|
|
||||||
<PackageReleaseNotes>Initial release.</PackageReleaseNotes>
|
|
||||||
<PackageTags>worms;team17</PackageTags>
|
|
||||||
<RepositoryType>git</RepositoryType>
|
|
||||||
<RepositoryUrl>https://gitlab.com/Syroot/Worms</RepositoryUrl>
|
|
||||||
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
||||||
<Version>2.0.0-alpha1</Version>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Syroot.Worms\Syroot.Worms.csproj" />
|
<ProjectReference Include="..\Syroot.Worms\Syroot.Worms.csproj" />
|
||||||
|
@ -1,21 +1,10 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
<Import Project="$(SolutionDir)build.xml" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AssemblyName>Syroot.Worms.Mgame</AssemblyName>
|
<AssemblyName>Syroot.Worms.Mgame</AssemblyName>
|
||||||
<Authors>Syroot</Authors>
|
|
||||||
<Copyright>(c) Syroot, licensed under MIT</Copyright>
|
|
||||||
<Description>.NET library for loading and modifying files of Mgame Worms clients.</Description>
|
<Description>.NET library for loading and modifying files of Mgame Worms clients.</Description>
|
||||||
<GenerateDocumentationFile Condition="'$(Configuration)'=='Release'">true</GenerateDocumentationFile>
|
<PackageReleaseNotes>Split into game-related packages.</PackageReleaseNotes>
|
||||||
<LangVersion>latest</LangVersion>
|
<PackageTags>$(PackageTags);online worms;worms world party aqua</PackageTags>
|
||||||
<PackageIconUrl>https://gitlab.com/Syroot/Worms/raw/master/res/icon.png</PackageIconUrl>
|
|
||||||
<PackageId>Syroot.Worms.Mgame</PackageId>
|
|
||||||
<PackageLicenseUrl>https://gitlab.com/Syroot/Worms/raw/master/LICENSE</PackageLicenseUrl>
|
|
||||||
<PackageProjectUrl>https://gitlab.com/Syroot/Worms</PackageProjectUrl>
|
|
||||||
<PackageReleaseNotes>Initial release.</PackageReleaseNotes>
|
|
||||||
<PackageTags>worms;team17</PackageTags>
|
|
||||||
<RepositoryType>git</RepositoryType>
|
|
||||||
<RepositoryUrl>https://gitlab.com/Syroot/Worms</RepositoryUrl>
|
|
||||||
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
||||||
<Version>2.0.0-alpha1</Version>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Syroot.Worms\Syroot.Worms.csproj" />
|
<ProjectReference Include="..\Syroot.Worms\Syroot.Worms.csproj" />
|
||||||
|
@ -1,21 +1,10 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
<Import Project="$(SolutionDir)build.xml" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AssemblyName>Syroot.Worms.WorldParty</AssemblyName>
|
<AssemblyName>Syroot.Worms.WorldParty</AssemblyName>
|
||||||
<Authors>Syroot</Authors>
|
|
||||||
<Copyright>(c) Syroot, licensed under MIT</Copyright>
|
|
||||||
<Description>.NET library for loading and modifying files of Team17's Worms World Party.</Description>
|
<Description>.NET library for loading and modifying files of Team17's Worms World Party.</Description>
|
||||||
<GenerateDocumentationFile Condition="'$(Configuration)'=='Release'">true</GenerateDocumentationFile>
|
<PackageReleaseNotes>Split into game-related packages.</PackageReleaseNotes>
|
||||||
<LangVersion>latest</LangVersion>
|
<PackageTags>$(PackageTags);worms world party</PackageTags>
|
||||||
<PackageIconUrl>https://gitlab.com/Syroot/Worms/raw/master/res/icon.png</PackageIconUrl>
|
|
||||||
<PackageId>Syroot.Worms.WorldParty</PackageId>
|
|
||||||
<PackageLicenseUrl>https://gitlab.com/Syroot/Worms/raw/master/LICENSE</PackageLicenseUrl>
|
|
||||||
<PackageProjectUrl>https://gitlab.com/Syroot/Worms</PackageProjectUrl>
|
|
||||||
<PackageReleaseNotes>Initial release.</PackageReleaseNotes>
|
|
||||||
<PackageTags>worms;team17</PackageTags>
|
|
||||||
<RepositoryType>git</RepositoryType>
|
|
||||||
<RepositoryUrl>https://gitlab.com/Syroot/Worms</RepositoryUrl>
|
|
||||||
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
||||||
<Version>2.0.0-alpha1</Version>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Syroot.Worms\Syroot.Worms.csproj" />
|
<ProjectReference Include="..\Syroot.Worms\Syroot.Worms.csproj" />
|
||||||
|
@ -1,21 +1,10 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
<Import Project="$(SolutionDir)build.xml" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AssemblyName>Syroot.Worms.Worms2</AssemblyName>
|
<AssemblyName>Syroot.Worms.Worms2</AssemblyName>
|
||||||
<Authors>Syroot</Authors>
|
|
||||||
<Copyright>(c) Syroot, licensed under MIT</Copyright>
|
|
||||||
<Description>.NET library for loading and modifying files of Team17's Worms 2.</Description>
|
<Description>.NET library for loading and modifying files of Team17's Worms 2.</Description>
|
||||||
<GenerateDocumentationFile Condition="'$(Configuration)'=='Release'">true</GenerateDocumentationFile>
|
<PackageReleaseNotes>Split into game-related packages.</PackageReleaseNotes>
|
||||||
<LangVersion>latest</LangVersion>
|
<PackageTags>$(PackageTags);worms 2</PackageTags>
|
||||||
<PackageIconUrl>https://gitlab.com/Syroot/Worms/raw/master/res/icon.png</PackageIconUrl>
|
|
||||||
<PackageId>Syroot.Worms.Worms2</PackageId>
|
|
||||||
<PackageLicenseUrl>https://gitlab.com/Syroot/Worms/raw/master/LICENSE</PackageLicenseUrl>
|
|
||||||
<PackageProjectUrl>https://gitlab.com/Syroot/Worms</PackageProjectUrl>
|
|
||||||
<PackageReleaseNotes>Initial release.</PackageReleaseNotes>
|
|
||||||
<PackageTags>worms;team17</PackageTags>
|
|
||||||
<RepositoryType>git</RepositoryType>
|
|
||||||
<RepositoryUrl>https://gitlab.com/Syroot/Worms</RepositoryUrl>
|
|
||||||
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
||||||
<Version>2.0.0-alpha1</Version>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Syroot.Worms\Syroot.Worms.csproj" />
|
<ProjectReference Include="..\Syroot.Worms\Syroot.Worms.csproj" />
|
||||||
|
@ -1,26 +1,14 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
<Import Project="$(SolutionDir)build.xml" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AssemblyName>Syroot.Worms</AssemblyName>
|
<AssemblyName>Syroot.Worms</AssemblyName>
|
||||||
<Authors>Syroot</Authors>
|
|
||||||
<Copyright>(c) Syroot, licensed under MIT</Copyright>
|
|
||||||
<Description>.NET library for loading and modifying files of Team17 Worms games.</Description>
|
<Description>.NET library for loading and modifying files of Team17 Worms games.</Description>
|
||||||
<GenerateDocumentationFile Condition="'$(Configuration)'=='Release'">true</GenerateDocumentationFile>
|
<PackageReleaseNotes>Split into game-related packages.</PackageReleaseNotes>
|
||||||
<LangVersion>latest</LangVersion>
|
|
||||||
<PackageIconUrl>https://gitlab.com/Syroot/Worms/raw/master/res/icon.png</PackageIconUrl>
|
|
||||||
<PackageId>Syroot.Worms</PackageId>
|
|
||||||
<PackageLicenseUrl>https://gitlab.com/Syroot/Worms/raw/master/LICENSE</PackageLicenseUrl>
|
|
||||||
<PackageProjectUrl>https://gitlab.com/Syroot/Worms</PackageProjectUrl>
|
|
||||||
<PackageReleaseNotes>Initial release.</PackageReleaseNotes>
|
|
||||||
<PackageTags>worms;team17</PackageTags>
|
|
||||||
<RepositoryType>git</RepositoryType>
|
|
||||||
<RepositoryUrl>https://gitlab.com/Syroot/Worms</RepositoryUrl>
|
|
||||||
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
||||||
<Version>2.0.0</Version>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Syroot.BinaryData.Serialization" Version="5.2.0" />
|
<PackageReference Include="Syroot.BinaryData.Serialization" Version="[5.2.0, 6)" />
|
||||||
<PackageReference Include="Syroot.BinaryData" Version="5.2.0" />
|
<PackageReference Include="Syroot.BinaryData" Version="[5.2.0, 6)" />
|
||||||
<PackageReference Include="System.Drawing.Common" Version="4.6.0" />
|
<PackageReference Include="System.Drawing.Common" Version="[4.7.0, 5)" />
|
||||||
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.6.0" />
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="[4.7.1, 5)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
@ -4,9 +4,9 @@
|
|||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="[16.6.1, 17)" />
|
||||||
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
|
<PackageReference Include="MSTest.TestAdapter" Version="[2.1.2, 3)" />
|
||||||
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
|
<PackageReference Include="MSTest.TestFramework" Version="[2.1.2, 3)" />
|
||||||
<ProjectReference Include="..\..\library\Syroot.Worms.Armageddon.ProjectX\Syroot.Worms.Armageddon.ProjectX.csproj" />
|
<ProjectReference Include="..\..\library\Syroot.Worms.Armageddon.ProjectX\Syroot.Worms.Armageddon.ProjectX.csproj" />
|
||||||
<ProjectReference Include="..\Syroot.Worms.Test\Syroot.Worms.Test.csproj" />
|
<ProjectReference Include="..\Syroot.Worms.Test\Syroot.Worms.Test.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
|
||||||
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
|
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
|
||||||
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
|
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
|
||||||
<ProjectReference Include="..\..\library\Syroot.Worms.Armageddon\Syroot.Worms.Armageddon.csproj" />
|
<ProjectReference Include="..\..\library\Syroot.Worms.Armageddon\Syroot.Worms.Armageddon.csproj" />
|
||||||
<ProjectReference Include="..\Syroot.Worms.Test\Syroot.Worms.Test.csproj" />
|
<ProjectReference Include="..\Syroot.Worms.Test\Syroot.Worms.Test.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="[16.6.1, 17)" />
|
||||||
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
|
<PackageReference Include="MSTest.TestAdapter" Version="[2.1.2, 3)" />
|
||||||
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
|
<PackageReference Include="MSTest.TestFramework" Version="[2.1.2, 3)" />
|
||||||
<ProjectReference Include="..\..\library\Syroot.Worms.Mgame\Syroot.Worms.Mgame.csproj" />
|
<ProjectReference Include="..\..\library\Syroot.Worms.Mgame\Syroot.Worms.Mgame.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="[16.6.1, 17)" />
|
||||||
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
|
<PackageReference Include="MSTest.TestAdapter" Version="[2.1.2, 3)" />
|
||||||
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
|
<PackageReference Include="MSTest.TestFramework" Version="[2.1.2, 3)" />
|
||||||
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
|
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="[16.6.1, 17)" />
|
||||||
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
|
<PackageReference Include="MSTest.TestAdapter" Version="[2.1.2, 3)" />
|
||||||
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
|
<PackageReference Include="MSTest.TestFramework" Version="[2.1.2, 3)" />
|
||||||
<ProjectReference Include="..\..\library\Syroot.Worms.WorldParty\Syroot.Worms.WorldParty.csproj" />
|
<ProjectReference Include="..\..\library\Syroot.Worms.WorldParty\Syroot.Worms.WorldParty.csproj" />
|
||||||
<ProjectReference Include="..\Syroot.Worms.Test\Syroot.Worms.Test.csproj" />
|
<ProjectReference Include="..\Syroot.Worms.Test\Syroot.Worms.Test.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="[16.6.1, 17)" />
|
||||||
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
|
<PackageReference Include="MSTest.TestAdapter" Version="[2.1.2, 3)" />
|
||||||
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
|
<PackageReference Include="MSTest.TestFramework" Version="[2.1.2, 3)" />
|
||||||
<ProjectReference Include="..\..\library\Syroot.Worms.Worms2\Syroot.Worms.Worms2.csproj" />
|
<ProjectReference Include="..\..\library\Syroot.Worms.Worms2\Syroot.Worms.Worms2.csproj" />
|
||||||
<ProjectReference Include="..\Syroot.Worms.Test\Syroot.Worms.Test.csproj" />
|
<ProjectReference Include="..\Syroot.Worms.Test\Syroot.Worms.Test.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
@ -7,11 +7,11 @@
|
|||||||
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
|
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="[3.1.5, 4)" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="[3.1.5, 4)" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="3.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="[3.1.5, 4)" />
|
||||||
<PackageReference Include="Syroot.BinaryData.Memory" Version="5.2.2" />
|
<PackageReference Include="Syroot.BinaryData.Memory" Version="[5.2.2, 6)" />
|
||||||
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.6.0" />
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="[4.7.1, 5)" />
|
||||||
<ProjectReference Include="..\..\library\Syroot.Worms.Mgame\Syroot.Worms.Mgame.csproj" />
|
<ProjectReference Include="..\..\library\Syroot.Worms.Mgame\Syroot.Worms.Mgame.csproj" />
|
||||||
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
|
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
|
||||||
<None Update="ServerConfig.json">
|
<None Update="ServerConfig.json">
|
||||||
|
@ -15,10 +15,10 @@
|
|||||||
<Version>1.0.0</Version>
|
<Version>1.0.0</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Costura.Fody" Version="4.1.0" />
|
<PackageReference Include="Costura.Fody" Version="[4.1.0, 5)" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="[3.1.5, 4)" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="[3.1.5, 4)" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="3.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="[3.1.5, 4)" />
|
||||||
<ProjectReference Include="..\..\library\Syroot.Worms.Mgame\Syroot.Worms.Mgame.csproj" />
|
<ProjectReference Include="..\..\library\Syroot.Worms.Mgame\Syroot.Worms.Mgame.csproj" />
|
||||||
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
|
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
|
||||||
<Reference Include="System.Windows.Forms" />
|
<Reference Include="System.Windows.Forms" />
|
||||||
|
@ -10,7 +10,9 @@ namespace Syroot.Worms.Shell
|
|||||||
/// Represents a thumbnail handler for <see cref="Img"/> files.
|
/// Represents a thumbnail handler for <see cref="Img"/> files.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[ComVisible(true)]
|
[ComVisible(true)]
|
||||||
|
#pragma warning disable CS0618 // Type or member is obsolete, no alternative given for SharpThumbnailHandler
|
||||||
[COMServerAssociation(AssociationType.FileExtension, ".img")]
|
[COMServerAssociation(AssociationType.FileExtension, ".img")]
|
||||||
|
#pragma warning restore CS0618
|
||||||
public class ImgThumbnailHandler : SharpThumbnailHandler
|
public class ImgThumbnailHandler : SharpThumbnailHandler
|
||||||
{
|
{
|
||||||
// ---- METHODS (PROTECTED) ------------------------------------------------------------------------------------
|
// ---- METHODS (PROTECTED) ------------------------------------------------------------------------------------
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
<TargetFramework>net472</TargetFramework>
|
<TargetFramework>net472</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="SharpShell" Version="2.7.1" />
|
<PackageReference Include="SharpShell" Version="[2.7.2, 3)" />
|
||||||
<PackageReference Include="StrongNamer" Version="0.0.8" />
|
<PackageReference Include="StrongNamer" Version="[0.2.5, 1)" />
|
||||||
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
|
<ProjectReference Include="..\..\library\Syroot.Worms\Syroot.Worms.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user