-
Notifications
You must be signed in to change notification settings - Fork 551
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build Microsoft.Native.Quic.MsQuic.XDP.OpenSSL nuget package (#3570)
TCP_FAIL_CONNECT_ON_ICMP_ERROR
- Loading branch information
Showing
5 changed files
with
72 additions
and
1 deletion.
There are no files selected for viewing
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
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
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
18 changes: 18 additions & 0 deletions
18
src/distribution/Microsoft.Native.Quic.MsQuic.XDP.OpenSSL.nuspec
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>Microsoft.Native.Quic.MsQuic.XDP.OpenSSL</id> | ||
<version>0.0.0</version> | ||
<title>MsQuic XDP (OpenSSL)</title> | ||
<authors>Microsoft</authors> | ||
<license type="expression">MIT</license> | ||
<icon>pkgicon.png</icon> | ||
<readme>README.md</readme> | ||
<projectUrl>https://github.com/microsoft/msquic</projectUrl> | ||
<requireLicenseAcceptance>true</requireLicenseAcceptance> | ||
<copyright>© Microsoft Corporation. All rights reserved.</copyright> | ||
<description>MsQuic native library for x64, x86 and arm64 using openssl for TLS and XDP datapath</description> | ||
<repository type="git" url="$RepoRemote$" commit="$CommitHash$" /> | ||
<tags>native quic msquic openssl xdp</tags> | ||
</metadata> | ||
</package> |
21 changes: 21 additions & 0 deletions
21
src/distribution/Microsoft.Native.Quic.MsQuic.XDP.OpenSSL.targets
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemDefinitionGroup> | ||
<ClCompile> | ||
<AdditionalIncludeDirectories>$(MSBuildThisFileDirectory)include/;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
</ClCompile> | ||
<Link Condition="'$(Platform.ToLower())' == 'x64'"> | ||
<AdditionalDependencies>$(MSBuildThisFileDirectory)lib/x64/msquic.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
</Link> | ||
<!-- <Link Condition="'$(Platform.ToLower())' == 'arm64'"> | ||
<AdditionalDependencies>$(MSBuildThisFileDirectory)lib/arm64/msquic.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
</Link> --> | ||
</ItemDefinitionGroup> | ||
<Target Name="msquic_AfterBuild" AfterTargets="AfterBuild" /> | ||
<Target Name="msquic_AfterBuild_x64" Label="x64" Condition="'$(Platform.ToLower())' == 'x64'" AfterTargets="msquic_AfterBuild"> | ||
<Copy SourceFiles="$(MSBuildThisFileDirectory)bin/x64/msquic.dll" DestinationFolder="$(TargetDir)" SkipUnchangedFiles="true" /> | ||
</Target> | ||
<!-- <Target Name="msquic_AfterBuild_arm64" Label="arm64" Condition="'$(Platform.ToLower())' == 'arm64'" AfterTargets="msquic_AfterBuild"> | ||
<Copy SourceFiles="$(MSBuildThisFileDirectory)bin/arm64/msquic.dll" DestinationFolder="$(TargetDir)" SkipUnchangedFiles="true" /> | ||
</Target> --> | ||
</Project> |