52 lines
2.0 KiB
XML
52 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!--package info-->
|
|
<PackageId>KerepWrapper</PackageId>
|
|
<Version>0.2.0</Version>
|
|
<Authors>Timerix</Authors>
|
|
<Description>Definitely not json</Description>
|
|
<RepositoryType>GIT</RepositoryType>
|
|
<RepositoryUrl>https://github.com/Timerix22/DTLib</RepositoryUrl>
|
|
<PackageProjectUrl>https://github.com/Timerix22/DTLib</PackageProjectUrl>
|
|
<Configuration>Release</Configuration>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<!--compilation properties-->
|
|
<TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
|
|
<DebugType>embedded</DebugType>
|
|
<!--language features-->
|
|
<LangVersion>10</LangVersion>
|
|
<Nullable>disable</Nullable>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<!--external dependencies-->
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
|
|
<Reference Include="System.Dynamic" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
|
</ItemGroup>
|
|
|
|
<!--DTLib dependencies-->
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<ProjectReference Include="..\DTLib\DTLib.csproj" />
|
|
<ProjectReference Include="..\DTLib.Dtsod\DTLib.Dtsod.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition=" '$(Configuration)' != 'Debug' ">
|
|
<PackageReference Include="DTLib" Version="1.3.1" />
|
|
</ItemGroup>
|
|
|
|
<!--project files-->
|
|
<ItemGroup>
|
|
<Content Include="runtimes\**\*">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<Pack>true</Pack>
|
|
<PackagePath>runtimes/</PackagePath>
|
|
</Content>
|
|
<Compile Remove="Experimental/**/*" />
|
|
<None Include="Experimental/**/*" />
|
|
</ItemGroup>
|
|
</Project>
|