From 1c33e2bad860f62fc5a15368b7505ba9460f8d62 Mon Sep 17 00:00:00 2001 From: James Groom Date: Fri, 10 May 2024 18:38:26 +1000 Subject: [PATCH] Actually fix indentation in project files --- ExternalProjects/NLua/NLua.csproj | 2 +- ExternalToolProjects/DATParser/DATParser.csproj | 4 ++-- src/MainSlnExecutable.props | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ExternalProjects/NLua/NLua.csproj b/ExternalProjects/NLua/NLua.csproj index a01032d2ef..48f491dd8a 100644 --- a/ExternalProjects/NLua/NLua.csproj +++ b/ExternalProjects/NLua/NLua.csproj @@ -28,6 +28,6 @@ - + diff --git a/ExternalToolProjects/DATParser/DATParser.csproj b/ExternalToolProjects/DATParser/DATParser.csproj index 102b25d0ef..bd9b60e07f 100644 --- a/ExternalToolProjects/DATParser/DATParser.csproj +++ b/ExternalToolProjects/DATParser/DATParser.csproj @@ -14,10 +14,10 @@ - True + True - SettingsSingleFileGenerator + SettingsSingleFileGenerator diff --git a/src/MainSlnExecutable.props b/src/MainSlnExecutable.props index 306aa35906..3c8358f96c 100644 --- a/src/MainSlnExecutable.props +++ b/src/MainSlnExecutable.props @@ -2,19 +2,19 @@ + This allows us to have the executable dependencies automagically copied over to our dll folder while still keeping the executable in the output folder. --> $(MSBuildProjectDirectory)/../../output/dll/ $(MSBuildProjectDirectory)/../../output/ + for the executable on build (as one would expect). So we still need to rename the executable file below. Using this method has the advantage + of IDEs respecting the TargetFileName and expecting it. --> $(MSBuildProjectName.Substring($([MSBuild]::Add($(MSBuildProjectName.LastIndexOf('.')), 1)))).exe $(ExecFilesDest)$(TargetFileName) + Note that LinkBase is simply something added to OutputPath, it doesn't replace it -->