Permalink
Browse files
[Build] Add option -NoSymbols to nuget push
Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions .
+4
−4
build/Xenko.build
@@ -71,17 +71,17 @@ Example of use:
<!-- Remove Samples.Templates (pushed only when requested since versionned separately -->
<NuGetPackage Remove =" @(NuGetPackage)" Condition =" '$(XenkoPublishSkipSamplesTemplates)' == 'true' And $([System.String]::Copy('%(Filename)').Contains('Xenko.Samples.Templates'))" />
</ItemGroup >
<Exec Command =' "$(NuGetPath)" push %(NuGetPackage.Identity) -ApiKey $(XenkoStoreApiKey) -Source $(XenkoStoreUrl) -Timeout 1800 ' />
<Exec Command =' "$(NuGetPath)" push %(NuGetPackage.Identity) -ApiKey $(XenkoStoreApiKey) -Source $(XenkoStoreUrl) -Timeout 1800 -NoSymbols ' />
<!-- Push GameStudio so that dependencies are already uploaded -->
<Exec Command =' "$(NuGetPath)" push ..\bin\packages\Xenko.GameStudio*.nupkg -ApiKey $(XenkoStoreApiKey) -Source $(XenkoStoreUrl) -Timeout 1800 ' />
<Exec Command =' "$(NuGetPath)" push ..\bin\packages\Xenko.GameStudio*.nupkg -ApiKey $(XenkoStoreApiKey) -Source $(XenkoStoreUrl) -Timeout 1800 -NoSymbols ' />
</Target >
<!--
Publish VSIX nupkg from this folder to the store
-->
<Target Name =" PublishVSIX" >
<Error Condition =" '$(XenkoStoreApiKey)' == ''" Text =" Missing env variable XenkoStoreApiKey" />
<Exec Command =' "$(NuGetPath)" push ..\bin\vsix\*.nupkg -ApiKey $(XenkoStoreApiKey) -Source $(XenkoStoreUrl) " ' />
<Exec Command =' "$(NuGetPath)" push ..\bin\vsix\*.nupkg -ApiKey $(XenkoStoreApiKey) -Source $(XenkoStoreUrl) -NoSymbols ' />
</Target >
<!--
@@ -503,7 +503,7 @@ Example of use:
-->
<Target Name =" PublishLauncher" >
<Error Condition =" '$(XenkoStoreApiKey)' == ''" Text =" Missing env variable XenkoStoreApiKey" />
<Exec Command =' "$(NuGetPath)" push ..\bin\launcher\*.nupkg -ApiKey $(XenkoStoreApiKey) -Source $(XenkoStoreUrl) " ' />
<Exec Command =' "$(NuGetPath)" push ..\bin\launcher\*.nupkg -ApiKey $(XenkoStoreApiKey) -Source $(XenkoStoreUrl) -NoSymbols ' />
</Target >
<Target Name =" BuildLauncher" DependsOnTargets =" CopyXenkoKey" >
Toggle all file notes
0 comments on commit
4645852