-
Notifications
You must be signed in to change notification settings - Fork 0
/
IoDeSer.csproj
41 lines (38 loc) · 1.46 KB
/
IoDeSer.csproj
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
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Authors>Io-Maciek</Authors>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>0.4.9</Version>
<Description>De/Serialization of .io file format.</Description>
<PackageProjectUrl>https://github.com/IoDeSer</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/IoDeSer/c-sharp-library</RepositoryUrl>
<RepositoryType>github</RepositoryType>
<PackageTags>file-format;serialization;deserialization;io</PackageTags>
<NeutralLanguage>en</NeutralLanguage>
<SignAssembly>False</SignAssembly>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<Title>IoDeSer</Title>
<Company>.ioDeSer</Company>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>Improved error messages</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<None Update="icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>