You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <!--
- NuGet packages.config doesn't support native assemblies automatically,
- so copy the native assemblies to the output directory.
- -->
- <ItemGroup Condition="Exists('packages.config') OR
- Exists('$(MSBuildProjectName).packages.config') OR
- Exists('packages.$(MSBuildProjectName).config')">
- <Content Include="$(MSBuildThisFileDirectory)\..\..\runtimes\win-x64\native\*.dll"
- Condition="'$(PlatformTarget)' == 'x64'">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <Visible>false</Visible>
- <Link>%(Filename)%(Extension)</Link>
- </Content>
- <Content Include="$(MSBuildThisFileDirectory)\..\..\runtimes\win-x86\native\*.dll"
- Condition="'$(PlatformTarget)' == 'x86'">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <Visible>false</Visible>
- <Link>%(Filename)%(Extension)</Link>
- </Content>
- </ItemGroup>
-
- </Project>
|