devolutions-crypto 0.9.2

An abstraction layer for the cryptography used by Devolutions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <ItemGroup>
        <Content Condition="$([MSBuild]::IsOSPlatform('Windows')) AND '$(TargetFramework.TrimEnd(`0123456789`))' == 'net'" Include="$(MSBuildThisFileDirectory)..\runtimes\win-x86\native\DevolutionsCrypto.dll">
            <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
            <Link>runtimes\win-x86\native\DevolutionsCrypto.dll</Link>
        </Content>
        <Content Condition="$([MSBuild]::IsOSPlatform('Windows')) AND '$(TargetFramework.TrimEnd(`0123456789`))' == 'net'" Include="$(MSBuildThisFileDirectory)..\runtimes\win-x64\native\DevolutionsCrypto.dll">
            <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
            <Link>runtimes\win-x64\native\DevolutionsCrypto.dll</Link>
        </Content>
        <Content Condition="$([MSBuild]::IsOSPlatform('Windows')) AND '$(TargetFramework.TrimEnd(`0123456789`))' == 'net'" Include="$(MSBuildThisFileDirectory)..\runtimes\win-arm64\native\DevolutionsCrypto.dll">
            <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
            <Link>runtimes\win-arm64\native\DevolutionsCrypto.dll</Link>
        </Content>
    </ItemGroup>
</Project>