61 lines
2.5 KiB
XML
61 lines
2.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<LangVersion>10.0</LangVersion>
|
|
|
|
<AssemblyName>AMWD.Common</AssemblyName>
|
|
<RootNamespace>AMWD.Common</RootNamespace>
|
|
<NrtRevisionFormat>{semvertag:main}{!:-dirty}</NrtRevisionFormat>
|
|
|
|
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
|
|
<CopyRefAssembliesToPublishDirectory>false</CopyRefAssembliesToPublishDirectory>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<EmbedUntrackedSources>false</EmbedUntrackedSources>
|
|
|
|
<PackageId>AMWD.Common</PackageId>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
<PackageProjectUrl>https://wiki.am-wd.de/libs/common</PackageProjectUrl>
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://git.am-wd.de/AM.WD/common.git</RepositoryUrl>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
<Product>AM.WD Common Library</Product>
|
|
<Description>Library with classes and extensions used frequently on AM.WD projects.</Description>
|
|
<Company>AM.WD</Company>
|
|
<Authors>Andreas Müller</Authors>
|
|
<Copyright>© {copyright:2020-} AM.WD</Copyright>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(GITLAB_CI)' == 'true'">
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(GITLAB_CI)' == 'true'">
|
|
<SourceLinkGitLabHost Include="git.am-wd.de" Version="$(CI_SERVER_VERSION)" />
|
|
<PackageReference Include="Microsoft.SourceLink.GitLab" Version="1.1.1" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="../icon.png" Pack="true" PackagePath="/" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MessagePack" Version="2.4.35" />
|
|
<PackageReference Include="Microsoft.AspNetCore.HttpOverrides" Version="2.2.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="Unclassified.DeepConvert" Version="1.4.0" />
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|