We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f354a72 commit b9d40b7Copy full SHA for b9d40b7
Build/SharpDX.build
@@ -46,11 +46,15 @@
46
<Target Name="Package">
47
<Message Importance="High" Text="Building SharpDX $(SharpDXAssemblyVersion)"/>
48
<CallTarget Targets="Build"/>
49
- <CallTarget Targets="Nuget"/>
50
<CallTarget Targets="ZipBuild"/>
51
- <CallTarget Condition="'$(SharpDXNugetPush)' == 'true'" Targets="NugetPush"/>
+ <CallTarget Condition="'$(SharpDXNugetPush)' == 'true'" Targets="NugetAndPush"/>
52
</Target>
53
-
+
+ <Target Name="NugetAndPush">
54
+ <CallTarget Targets="Nuget"/>
55
+ <CallTarget Targets="NugetPush"/>
56
+ </Target>
57
58
<Target Name="Build">
59
<!--Build all targets / platforms-->
60
<Exec Command="RMDIR /Q /S $(SharpDXRepo)\Bin"/>
0 commit comments