-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Refactor Libuv-Transport based on [NetUV.Core](https://github.com/S…
…tormHub/NetUV) - Add support for UDP in Libuv-Transport - Fix #4 - Modify **Suite** tests to also target .NET Core in linux(locally) (#19)
- Loading branch information
Showing
2 changed files
with
31 additions
and
38 deletions.
There are no files selected for viewing
61 changes: 30 additions & 31 deletions
61
src/DotNetty.Transport.Libuv/DotNetty.Transport.Libuv.Netstandard.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,35 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\nuget.props" /> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<RootNamespace>DotNetty.Transport.Libuv</RootNamespace> | ||
<AssemblyName>DotNetty.Transport.Libuv</AssemblyName> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
<Import Project="..\nuget.props" /> | ||
|
||
<PropertyGroup Label="NuGet"> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<RootNamespace>DotNetty.Transport.Libuv</RootNamespace> | ||
<AssemblyName>DotNetty.Transport.Libuv</AssemblyName> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="libuv-shared" Version="$(LibuvSharedPackageVersion)" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\DotNetty.Transport\DotNetty.Transport.Netstandard.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Update="Internal\Strings.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>Strings.resx</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Update="Internal\Strings.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Strings.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
<PropertyGroup Label="NuGet"> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\version.props" /> | ||
<ItemGroup> | ||
<ProjectReference Include="..\DotNetty.NetUV\DotNetty.NetUV.Netstandard.csproj" /> | ||
<ProjectReference Include="..\DotNetty.Transport\DotNetty.Transport.Netstandard.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Update="Internal\Strings.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>Strings.resx</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Update="Internal\Strings.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Strings.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
|
||
<Import Project="..\version.props" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters