mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-13 07:11:44 +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>
|
<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>
|
||||||
|
@ -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)
|
||||||
|
@ -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>
|
||||||
|
@ -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" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user