Add client files, see postbuild.config.xml to enable updating

This commit is contained in:
Codename
2019-09-07 20:14:03 +02:00
parent ab49cd8ec2
commit df858c6629
5 changed files with 187 additions and 120 deletions

View File

@@ -42,6 +42,6 @@
</Reference>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(ConfigurationName)' != 'ServerBuild' AND '$(OS)' == 'Windows_NT'">
<Exec Command="powershell -ExecutionPolicy ByPass -File .\post_build.ps1 -buildDirectory $(OutDir) -buildFilename $(TargetFileName)" />
<Exec Command="powershell -NonInteractive -ExecutionPolicy ByPass -File ..\postbuild.ps1 -buildDirectory $(OutDir) -buildFilename $(TargetFileName)" LogStandardErrorAsError="True" />
</Target>
</Project>