Skip to content

Commit a3e9630

Browse files
committed
2 parents 4f496e8 + 88daca9 commit a3e9630

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

src/Vortice.Dxc/Vortice.Dxc.csproj

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<Sdk Name="SharpGenTools.Sdk" Version="$(SharpGenVersion)" />
44

@@ -15,17 +15,19 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18-
<Content Include="dxcompiler.dll">
18+
<Content Include="build\dxcompiler.dll">
1919
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
20-
<PackagePath>lib/$(TargetFramework)</PackagePath>
20+
<PackagePath>build/$(TargetFramework)</PackagePath>
2121
<Pack>true</Pack>
22-
<Visible>false</Visible>
2322
</Content>
24-
<Content Include="dxil.dll">
23+
<Content Include="build\dxil.dll">
2524
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
26-
<PackagePath>lib/$(TargetFramework)</PackagePath>
25+
<PackagePath>build/$(TargetFramework)</PackagePath>
26+
<Pack>true</Pack>
27+
</Content>
28+
<Content Include="build\Vortice.Dxc.targets">
29+
<PackagePath>build/$(TargetFramework)/Vortice.Dxc.targets</PackagePath>
2730
<Pack>true</Pack>
28-
<Visible>false</Visible>
2931
</Content>
3032
</ItemGroup>
3133

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<Project>
2+
<PropertyGroup>
3+
<CopyNativeAssemblies_Vortice_Dxc Condition="'$(CopyNativeAssemblies_Vortice_Dxc)' == ''">true</CopyNativeAssemblies_Vortice_Dxc>
4+
</PropertyGroup>
5+
6+
<ItemGroup Condition="'$(CopyNativeAssemblies_Vortice_Dxc)' == true">
7+
<None Include="$(MSBuildThisFileDirectory)\*.dll">
8+
<Link>%(Filename)%(Extension)</Link>
9+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
10+
<Visible>False</Visible>
11+
</None>
12+
</ItemGroup>
13+
</Project>
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)