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

View File

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

View File

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

View File

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