-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathSimplify.System.csproj
More file actions
32 lines (28 loc) · 1.35 KB
/
Simplify.System.csproj
File metadata and controls
32 lines (28 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;netstandard2.1;netstandard2.0;net48</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>1.6.2</Version>
<Description>Core classes for applications and libraries</Description>
<Product>Simplify</Product>
<Authors>Alexander Krylkov</Authors>
<Copyright>Licensed under LGPL</Copyright>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/SimplifyNet/Simplify/wiki/Simplify.System</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageTags>.NET</PackageTags>
<PackageReleaseNotes>See https://github.com/SimplifyNet/Simplify/tree/master/src/Simplify.System/CHANGELOG.md for details</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\images\icon.png" Pack="true" Visible="false" PackagePath="" />
<None Include="CHANGELOG.md" Pack="true" PackagePath="\" />
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>