mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-12-05 02:53:08 +01:00
Compare commits
No commits in common. "70827d67853d71e9ce7ba38320f66cda21aadddb" and "b9184ba3d9e830c102badb780d51d152e1291e91" have entirely different histories.
70827d6785
...
b9184ba3d9
@ -49,7 +49,8 @@
|
||||
|
||||
Directory.CreateDirectory(Path.GetDirectoryName(userConfigFilePath));
|
||||
|
||||
using (var streamWriter = new StreamWriter(userConfigFilePath, append: false))
|
||||
using (var file = File.OpenWrite(userConfigFilePath))
|
||||
using (var streamWriter = new StreamWriter(file))
|
||||
{
|
||||
string serializedConfig = JsonConvert.SerializeObject(this.userConfig, Formatting.Indented);
|
||||
streamWriter.Write(serializedConfig);
|
||||
|
@ -186,7 +186,6 @@
|
||||
<Target Name="PostBuild" AfterTargets="Build">
|
||||
<Copy Condition="$(GameImagePath) != ''" SourceFiles="$(TargetPath)" DestinationFolder="$(GameImagePath)" SkipUnchangedFiles="true" />
|
||||
<Copy Condition="$(GameImagePath) != ''" SourceFiles="@(ReferenceCopyLocalPaths)" DestinationFolder="$(GameImagePath)" SkipUnchangedFiles="true" />
|
||||
<Copy Condition="$(GameImagePath) != ''" SourceFiles="@(_ThisProjectItemsToCopyToOutputDirectory)" DestinationFolder="$(GameImagePath)" SkipUnchangedFiles="true" />
|
||||
<CallTarget Condition="$(GIANTS_PATH) != ''" Targets="CopyTargetToGameFolder" />
|
||||
</Target>
|
||||
</Project>
|
Loading…
Reference in New Issue
Block a user