2019-09-06 19:25:54 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2019-09-10 22:48:25 +02:00
|
|
|
|
<TargetFrameworks>netstandard2.0;netcoreapp2.1</TargetFrameworks>
|
2019-09-15 19:09:43 +02:00
|
|
|
|
<Configurations>Debug;Release</Configurations>
|
2020-04-25 15:52:58 +02:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
2019-09-06 19:25:54 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-04-25 23:23:00 +02:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
|
2020-04-26 00:56:35 +02:00
|
|
|
|
<DebugType>portable</DebugType>
|
2020-04-25 23:23:00 +02:00
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-09-06 19:25:54 +02:00
|
|
|
|
<ItemGroup>
|
2021-09-25 15:29:09 +02:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.4.0" />
|
2020-04-25 15:52:58 +02:00
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
|
2019-09-06 19:25:54 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Capnp.Net.Runtime\Capnp.Net.Runtime.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|