Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

moving the <None> items into targets to force correct ordering #97

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions Rubjerg.Graphviz.Test/Rubjerg.Graphviz.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,15 @@
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
</ItemGroup>

<ItemGroup>
<None Update="*.dot">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>true</Pack>
<PackageCopyToOutput>true</PackageCopyToOutput>
</None>
</ItemGroup>
<Target Name="RunAfterBuildIsDone" AfterTargets="ResolveProjectReferences">
<ItemGroup>
<None Update="*.dot">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>true</Pack>
<PackageCopyToOutput>true</PackageCopyToOutput>
</None>
</ItemGroup>
</Target>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<PropertyGroup>
Expand Down
5 changes: 3 additions & 2 deletions Rubjerg.Graphviz.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32428.209
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Rubjerg.Graphviz.TransitiveTest", "Rubjerg.Graphviz.TransitiveTest\Rubjerg.Graphviz.TransitiveTest.csproj", "{FAB37EA6-101F-4B84-816F-7A98D571BAE7}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Rubjerg.Graphviz", "Rubjerg.Graphviz\Rubjerg.Graphviz.csproj", "{66D83B79-08D5-4590-90E3-8F6CDF108D5E}"
ProjectSection(ProjectDependencies) = postProject
{F9BC5523-352D-469F-8DBB-97ECA9D70648} = {F9BC5523-352D-469F-8DBB-97ECA9D70648}
Expand All @@ -17,8 +19,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.editorconfig = .editorconfig
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Rubjerg.Graphviz.TransitiveTest", "Rubjerg.Graphviz.TransitiveTest\Rubjerg.Graphviz.TransitiveTest.csproj", "{FAB37EA6-101F-4B84-816F-7A98D571BAE7}"
EndProject

Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ConsoleApplication", "ConsoleApplication\ConsoleApplication.vcxproj", "{27A1D045-B8C9-4785-A2DA-ECAC48158725}"
EndProject
Global
Expand Down
24 changes: 13 additions & 11 deletions Rubjerg.Graphviz/Rubjerg.Graphviz.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,18 @@
</ProjectReference>
</ItemGroup>

<ItemGroup>
<None Update="*.dll;*.lib;*.pdb;*.exp;*.exe;config6">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Pack>true</Pack>
<PackageCopyToOutput>true</PackageCopyToOutput>
</None>
<None Include="..\LICENSE">
<Pack>true</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<Target Name="RunAfterBuildIsDone" AfterTargets="ResolveProjectReferences">
<ItemGroup>
<None Include="*.dll;*.lib;*.pdb;*.exp;*.exe;config6">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Pack>true</Pack>
<PackageCopyToOutput>true</PackageCopyToOutput>
</None>
<None Include="..\LICENSE">
<Pack>true</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Target>

</Project>
Loading