mirror of
https://gitlab.com/Syroot/Worms.git
synced 2025-04-08 10:29:04 +03:00
38 lines
1.5 KiB
XML
38 lines
1.5 KiB
XML
<?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>
|