123456789101112131415161718192021222324252627282930313233343536373839 |
- <Project Sdk="Microsoft.NET.Sdk">
- <Import Project="../version.props" />
- <PropertyGroup>
- <TargetFrameworks>net46;netcoreapp2.0</TargetFrameworks>
- <Configurations>Debug;Release</Configurations>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <OutputPath>..\Build\$(Configuration)\$(MSBuildProjectName)</OutputPath>
- <IntermediateOutputPath>..\Build\$(Configuration)\$(MSBuildProjectName)\obj</IntermediateOutputPath>
- <GenerateFullPaths>True</GenerateFullPaths>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)'=='Release'">
- <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
- <Company>Topten Software</Company>
- <Authors>Topten Software</Authors>
- <Copyright>Copyright © 2014-2020 Topten Software. All Rights Reserved</Copyright>
- <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
- <PackageIcon>nuget-icon.png</PackageIcon>
- <PackageProjectUrl>https://github.com/toptensoftware/jsonkit</PackageProjectUrl>
- <PackageTags>JSON, Serialization</PackageTags>
- <Description>Lightweight JSON Serialization Library</Description>
- <RepositoryUrl>https://github.com/toptensoftware/jsonkit</RepositoryUrl>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\version.cs" Link="version.cs" />
- </ItemGroup>
- <Target Name="Code Sign" AfterTargets="Build" Condition="'$(Configuration)'=='Release' And '$(TargetFileName)'!=''">
- <Exec Command="ttssign $(TargetDir)$(TargetFileName)" />
- </Target>
- <ItemGroup>
- <None Include="../Artwork/nuget-icon.png" Pack="true" PackagePath=""/>
- </ItemGroup>
- </Project>
|