This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Do If="$(PublishDebugSymbols)"> | |
<Do If="$(IsBuildMachine)"> | |
<Horde-SetSecretEnvVar Name="SENTRY_AUTH_TOKEN" Secret="SentryAuthToken.value" /> | |
</Do> | |
<Property Name="PluginDir" Value="$(ProjectDir)/Plugins/Sentry" /> | |
<Property Name="SentryUploadSymbolsArgs" Value="$(Platform) $(TargetName) $(PlatformType) $(Configuration)" /> | |
<Property Name="SentryUploadSymbolsArgs" Value="$(SentryUploadSymbolsArgs) "$(ProjectDir)" "$(PluginDir)"" /> | |
<Spawn Exe="cmd" Arguments="/C ""$(PluginDir)/Scripts/upload-debug-symbols-win.bat" $(SentryUploadSymbolsArgs)"" Environment="SENTRY_UPLOAD_SYMBOLS_AUTOMATICALLY=True" LogOutput="True" /> | |
</Do> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' ?> | |
<BuildGraph xmlns="http://www.epicgames.com/BuildGraph" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.epicgames.com/BuildGraph ../Schema.xsd" > | |
<Agent Name="TestAgent" Type="Default"> | |
<Node Name="TestContains"> | |
<Property Name="TestString" Value="This is a string to test against" /> | |
<Property Name="TestString2" Value="Another string" /> | |
<Property Name="CheckValue" Value="test" /> | |
<Warning If="Contains('$(TestString)', '$(CheckValue)')" Message="TestContains: Test String contained the check value" /> | |
<Warning If="!Contains('$(TestString2)', '$(CheckValue)')" Message="TestContains: Test String 2 did not contain the check value" /> | |
</Node> |