full pdb, removed dep. to capnp.runtime 1.0.0

This commit is contained in:
Christian Köllner 2020-02-22 16:01:04 +01:00
parent 6d711b8579
commit 1649067ef6
4 changed files with 14 additions and 6 deletions

View File

@ -5,9 +5,14 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Capnp.Net.Runtime" Version="1.3.22-g47cb578057" />
<PackageReference Include="CapnpC.CSharp.MsBuild.Generation" Version="1.3.0" />
<PackageReference Include="Capnp.Net.Runtime" Version="1.3.29-g6d711b8579" />
<PackageReference Include="CapnpC.CSharp.MsBuild.Generation" Version="1.3.29-g6d711b8579" />
</ItemGroup>
</Project>

View File

@ -16,7 +16,7 @@ namespace CapnpProfile
using var client = new TcpRpcClient("localhost", 5002);
await client.WhenConnected;
using var echoer = client.GetMain<IEchoer>();
var payload = new byte[200000];
var payload = new byte[20];
new Random().NextBytes(payload);
while (true)

View File

@ -28,6 +28,11 @@
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
</ItemGroup>

View File

@ -14,9 +14,7 @@
<license type="expression">MIT</license>
<tags>capnproto csharp msbuild</tags>
<copyright>Christian Köllner and contributors</copyright>
<dependencies>
<dependency id="Capnp.Net.Runtime" version="1.0" />
</dependencies>
<dependencies/>
</metadata>
<files>
<file src="build\**\*" target="build" />