mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
full pdb, removed dep. to capnp.runtime 1.0.0
This commit is contained in:
parent
6d711b8579
commit
1649067ef6
@ -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>
|
||||
|
@ -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)
|
||||
|
@ -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>
|
||||
|
@ -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" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user