mirror of
https://github.com/claunia/plist-cil.git
synced 2025-12-16 11:04:26 +00:00
64 lines
2.9 KiB
XML
64 lines
2.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp1.0;net40</TargetFrameworks>
|
|
<Version>1.15</Version>
|
|
<Authors>Natalia Portillo</Authors>
|
|
<Company>Claunia.com</Company>
|
|
<Description>MIT licensed C#/.NET parser and writer for Apple and GnuStep Property Lists, supporting ASCII, Binary and Xml formats, based on Java's dd-plist.</Description>
|
|
<Copyright>© 2015-2017 Natalia Portillo</Copyright>
|
|
<PackageLicenseUrl>https://raw.githubusercontent.com/claunia/plist-cil/master/LICENSE</PackageLicenseUrl>
|
|
<PackageProjectUrl>http://www.github.com/claunia/plist-cil</PackageProjectUrl>
|
|
<RepositoryUrl>http://www.github.com/claunia/plist-cil</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageTags>apple propertylist property list gnustep plist</PackageTags>
|
|
<PackageReleaseNotes>Ported to .NET Core</PackageReleaseNotes>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<SignAssembly>True</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>plist-cil.snk</AssemblyOriginatorKeyFile>
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DefineConstants>TRACE;RELEASE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp1.0'">
|
|
<DefineConstants>NETCOREAPP1_0;NETCORE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp1.0|AnyCPU'">
|
|
<DocumentationFile>bin\Release\netcoreapp1.0\plist-cil.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net40|AnyCPU'">
|
|
<DocumentationFile>bin\Release\net40\plist-cil.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp1.0'">
|
|
<PackageReference Include="System.Reflection" Version="4.3.0" />
|
|
<PackageReference Include="System.Runtime.Serialization.Formatters" Version="4.3.0" />
|
|
<PackageReference Include="System.Xml.XmlDocument" Version="4.3.0" />
|
|
<PackageReference Include="System.Xml.XmlSerializer" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE">
|
|
<Link>LICENSE</Link>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Include="..\README.md">
|
|
<Link>README.txt</Link>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Include="ChangeLog">
|
|
<Link>ChangeLog.txt</Link>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |