Skip to content

Commit aa65bce

Browse files
committed
[Paths] Remove lower casing of paths which can cause issues on case sensitive platforms
* Updated all sample projects except fastbuild since those include local installation into
1 parent ccca5aa commit aa65bce

File tree

48 files changed

+325
-384
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+325
-384
lines changed

Sharpmake.UnitTests/UtilTest.cs

Lines changed: 11 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -62,35 +62,27 @@ public void LeavesEmptyStringsUntouched()
6262
public void LeavesVariablesUntouched()
6363
{
6464
string expectedResult = "$(Console_SdkPackagesRoot)";
65-
if (!Util.IsRunningInMono())
66-
expectedResult = expectedResult.ToLower();
6765
Assert.That(Util.PathMakeStandard("$(Console_SdkPackagesRoot)"), Is.EqualTo(expectedResult));
6866
}
6967

7068
[Test]
7169
public void ProcessesPathWithTrailingBackslash()
7270
{
7371
string expectedResult = Path.Combine("rd", "project", "dev", "projects", "sharpmake", "..", "..", "extern", "Geometrics");
74-
if (!Util.IsRunningInMono())
75-
expectedResult = expectedResult.ToLower();
7672
Assert.That(Util.PathMakeStandard(@"rd\project\dev\projects\sharpmake\..\..\extern\Geometrics\"), Is.EqualTo(expectedResult));
7773
}
7874

7975
[Test]
8076
public void ProcessesPathWithTrailingBackslashAndADot()
8177
{
8278
var expectedResult = Path.Combine("rd", "project", "dev", "projects", "sharpmake", "..", "..", "extern", "Microsoft.CNG", "Lib");
83-
if (!Util.IsRunningInMono())
84-
expectedResult = expectedResult.ToLower();
8579
Assert.That(Util.PathMakeStandard(@"rd\project\dev\projects\sharpmake\..\..\extern\Microsoft.CNG\Lib\"), Is.EqualTo(expectedResult));
8680
}
8781

8882
[Test]
8983
public void ProcessesPathWithMultipleTrailingBackslashes()
9084
{
9185
var expectedResult = Path.Combine("rd", "project", "dev", "projects", "sharpmake", "..", "..", "extern", "Microsoft.CNG", "Lib");
92-
if (!Util.IsRunningInMono())
93-
expectedResult = expectedResult.ToLower();
9486
Assert.That(Util.PathMakeStandard(@"rd\project\dev\projects\sharpmake\..\..\extern\Microsoft.CNG\Lib\\\"), Is.EqualTo(expectedResult));
9587
}
9688

@@ -108,9 +100,6 @@ public void ProcessesWithAListAsArgument()
108100
};
109101
var expectedList = listString;
110102

111-
if (!Util.IsRunningInMono())
112-
expectedList = expectedList.Select((p) => p.ToLower()).ToList();
113-
114103
Util.PathMakeStandard(listString);
115104

116105
Assert.AreEqual(expectedList, listString);
@@ -753,7 +742,7 @@ public void CanBeComputedFromOutputPath()
753742
var referenceFileFullPath = outputFileFullPath.ReplaceHeadPath(outputPath, referencePath);
754743

755744
Assert.That(referenceFileFullPath, Is.EqualTo(
756-
Util.PathMakeStandard(@"F:\OnePath\With\Reference\with\a\file.cs", false)));
745+
Util.PathMakeStandard(@"F:\OnePath\With\Reference\with\a\file.cs")));
757746
}
758747

759748
[Test]
@@ -766,7 +755,7 @@ public void IsCaseInsensitiveButPreservesCase()
766755
var referenceFileFullPath = outputFileFullPath.ReplaceHeadPath(outputPath, referencePath);
767756

768757
Assert.That(referenceFileFullPath, Is.EqualTo(
769-
Util.PathMakeStandard(@"F:\OnePath\with\Reference\with\a\File.cs", false)));
758+
Util.PathMakeStandard(@"F:\OnePath\with\Reference\with\a\File.cs")));
770759
}
771760

772761
[Test]
@@ -779,7 +768,7 @@ public void AcceptsOutputPathWithoutTrailingSlash()
779768
var referenceFileFullPath = outputFileFullPath.ReplaceHeadPath(outputPath, referencePath);
780769

781770
Assert.That(referenceFileFullPath, Is.EqualTo(
782-
Util.PathMakeStandard(@"F:\OnePath\With\Reference\with\a\file.cs", false)));
771+
Util.PathMakeStandard(@"F:\OnePath\With\Reference\with\a\file.cs")));
783772
}
784773
}
785774

@@ -1000,7 +989,7 @@ public void PathGetAbsoluteStringsReturnList()
1000989
string filename = Path.GetFileName(mockPath);
1001990
string stringsSource = Path.GetDirectoryName(mockPath);
1002991

1003-
Assert.AreEqual(Path.Combine(stringsSource.ToLower(), filename), Util.PathGetAbsolute(stringsSource, new Strings(filename))[0]);
992+
Assert.AreEqual(Path.Combine(stringsSource, filename), Util.PathGetAbsolute(stringsSource, new Strings(filename))[0]);
1004993

1005994
File.Delete(mockPath);
1006995
}
@@ -1015,7 +1004,7 @@ public void PathGetAbsoluteStringsReturnString()
10151004
var separator = Path.DirectorySeparatorChar;
10161005
string stringsSource = mockPath.Substring(0, mockPath.IndexOf(separator));
10171006
string stringsDest = mockPath.Substring(mockPath.IndexOf(separator, mockPath.IndexOf(separator) + 1));
1018-
string expectedOutputPath = stringsSource.ToLower() + stringsDest;
1007+
string expectedOutputPath = stringsSource + stringsDest;
10191008
//v
10201009
Assert.AreEqual(expectedOutputPath, Util.PathGetAbsolute(stringsSource, stringsDest));
10211010

@@ -1032,7 +1021,6 @@ public void ResolvePathString()
10321021
Strings paths = new Strings(Path.GetDirectoryName(mockPath));
10331022
string root = mockPath.Substring(0, mockPath.IndexOf(Path.DirectorySeparatorChar));
10341023
Strings expectedOutputPath = new Strings(paths.Select((p) => Path.Combine(root, p)));
1035-
expectedOutputPath.ToLower();
10361024

10371025
Util.ResolvePath(root, ref paths);
10381026

@@ -1057,7 +1045,7 @@ public void ResolvePathOrderableString()
10571045
mockPath3.Substring(mockPath3.IndexOf(Path.DirectorySeparatorChar)),
10581046
};
10591047
string root = mockPath1.Substring(0, mockPath1.IndexOf(Path.DirectorySeparatorChar));
1060-
OrderableStrings expectedOutputPath = new OrderableStrings(paths.Select((p) => (root + p).ToLower()));
1048+
OrderableStrings expectedOutputPath = new OrderableStrings(paths.Select((p) => (root + p)));
10611049

10621050
Util.ResolvePath(root, ref paths);
10631051
expectedOutputPath.Sort();
@@ -1114,8 +1102,8 @@ public void PathGetRelativeOrderableStrings()
11141102
Util.PathMakeStandard(stringsDest);
11151103
OrderableStrings listResult = Util.PathGetRelative(stringsSource, stringsDest, false);
11161104

1117-
Assert.AreEqual(Util.PathMakeStandard(@"..\Sharpmake.Generators\Generic", !Util.IsRunningInMono()), listResult[0]);
1118-
Assert.AreEqual(Util.PathMakeStandard(@"subdir\test.txt", !Util.IsRunningInMono()), listResult[1]);
1105+
Assert.AreEqual(Util.PathMakeStandard(@"..\Sharpmake.Generators\Generic"), listResult[0]);
1106+
Assert.AreEqual(Util.PathMakeStandard(@"subdir\test.txt"), listResult[1]);
11191107
Assert.AreEqual("test2.txt", listResult[2]);
11201108
}
11211109

@@ -1192,11 +1180,11 @@ public void GetConvertedRelativePathRoot()
11921180
var root = @"C:\SharpMake\sharpmake\Sharpmake.Application\Properties";
11931181

11941182
var newRelativeToFullPath = "";
1195-
Assert.AreEqual(Path.Combine(absolutePath.ToLower(), fileName), Util.GetConvertedRelativePath(absolutePath, fileName, newRelativeToFullPath, false, null));
1183+
Assert.AreEqual(Path.Combine(absolutePath, fileName), Util.GetConvertedRelativePath(absolutePath, fileName, newRelativeToFullPath, false, null));
11961184
Assert.AreEqual(mockPath, Util.GetConvertedRelativePath(absolutePath, mockPath, newRelativeToFullPath, false, root));
1197-
Assert.AreEqual(Path.Combine(absolutePath.ToLower(), fileName), Util.GetConvertedRelativePath(absolutePath, fileName, newRelativeToFullPath, false, ""));
1185+
Assert.AreEqual(Path.Combine(absolutePath, fileName), Util.GetConvertedRelativePath(absolutePath, fileName, newRelativeToFullPath, false, ""));
11981186
Assert.AreEqual(absolutePath, Util.GetConvertedRelativePath(absolutePath, null, newRelativeToFullPath, false, null));
1199-
Assert.AreEqual(Path.Combine(root.ToLower(), Path.GetTempPath()), Util.GetConvertedRelativePath(root, Path.GetTempPath(), newRelativeToFullPath, false, null));
1187+
Assert.AreEqual(Path.Combine(root, Path.GetTempPath()), Util.GetConvertedRelativePath(root, Path.GetTempPath(), newRelativeToFullPath, false, null));
12001188

12011189
File.Delete(mockPath);
12021190
}

Sharpmake/PathUtil.cs

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,10 @@ public static void PathMakeStandard(IList<string> paths)
4040
}
4141

4242
public static string PathMakeStandard(string path)
43-
{
44-
return PathMakeStandard(path, !Util.IsRunningOnUnix());
45-
}
46-
47-
public static string PathMakeStandard(string path, bool forceToLower)
4843
{
4944
// cleanup the path by replacing the other separator by the correct one for this OS
5045
// then trim every trailing separators
51-
var standardPath = path.Replace(OtherSeparator, Path.DirectorySeparatorChar).TrimEnd(Path.DirectorySeparatorChar);
52-
return forceToLower ? standardPath.ToLower() : standardPath;
46+
return path.Replace(OtherSeparator, Path.DirectorySeparatorChar).TrimEnd(Path.DirectorySeparatorChar);
5347
}
5448

5549
public static string EnsureTrailingSeparator(string path)
@@ -797,9 +791,9 @@ internal static string ConvertToMountedUnixPath(string path)
797791
public static string ReplaceHeadPath(this string fullInputPath, string inputHeadPath, string replacementHeadPath)
798792
{
799793
// Normalize paths before comparing and combining them, to prevent false mismatch between '\\' and '/'.
800-
fullInputPath = Util.PathMakeStandard(fullInputPath, false);
801-
inputHeadPath = Util.PathMakeStandard(inputHeadPath, false);
802-
replacementHeadPath = Util.PathMakeStandard(replacementHeadPath, false);
794+
fullInputPath = PathMakeStandard(fullInputPath);
795+
inputHeadPath = PathMakeStandard(inputHeadPath);
796+
replacementHeadPath = PathMakeStandard(replacementHeadPath);
803797

804798
inputHeadPath = EnsureTrailingSeparator(inputHeadPath);
805799

samples/CPPCLI/reference/projects/OtherCSharpProj.vs2017.v4_6_2.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<DebugSymbols>true</DebugSymbols>
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
20-
<OutputPath>output\vs2017\v4_6_2\debug</OutputPath>
21-
<IntermediateOutputPath>temp\othercsharpproj\vs2017\v4_6_2\debug</IntermediateOutputPath>
20+
<OutputPath>output\vs2017\v4_6_2\Debug</OutputPath>
21+
<IntermediateOutputPath>temp\OtherCSharpProj\vs2017\v4_6_2\Debug</IntermediateOutputPath>
2222
<DefineConstants>DEBUG;TRACE;WIN32</DefineConstants>
2323
<WarningLevel>4</WarningLevel>
2424
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -29,8 +29,8 @@
2929
<DebugSymbols>false</DebugSymbols>
3030
<DebugType>pdbonly</DebugType>
3131
<Optimize>true</Optimize>
32-
<OutputPath>output\vs2017\v4_6_2\release</OutputPath>
33-
<IntermediateOutputPath>temp\othercsharpproj\vs2017\v4_6_2\release</IntermediateOutputPath>
32+
<OutputPath>output\vs2017\v4_6_2\Release</OutputPath>
33+
<IntermediateOutputPath>temp\OtherCSharpProj\vs2017\v4_6_2\Release</IntermediateOutputPath>
3434
<DefineConstants>TRACE;WIN32</DefineConstants>
3535
<WarningLevel>4</WarningLevel>
3636
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/CPPCLI/reference/projects/OtherCSharpProj.vs2019.v4_7_2.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<DebugSymbols>true</DebugSymbols>
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
20-
<OutputPath>output\vs2019\v4_7_2\debug</OutputPath>
21-
<IntermediateOutputPath>temp\othercsharpproj\vs2019\v4_7_2\debug</IntermediateOutputPath>
20+
<OutputPath>output\vs2019\v4_7_2\Debug</OutputPath>
21+
<IntermediateOutputPath>temp\OtherCSharpProj\vs2019\v4_7_2\Debug</IntermediateOutputPath>
2222
<DefineConstants>DEBUG;TRACE;WIN32</DefineConstants>
2323
<WarningLevel>4</WarningLevel>
2424
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -29,8 +29,8 @@
2929
<DebugSymbols>false</DebugSymbols>
3030
<DebugType>pdbonly</DebugType>
3131
<Optimize>true</Optimize>
32-
<OutputPath>output\vs2019\v4_7_2\release</OutputPath>
33-
<IntermediateOutputPath>temp\othercsharpproj\vs2019\v4_7_2\release</IntermediateOutputPath>
32+
<OutputPath>output\vs2019\v4_7_2\Release</OutputPath>
33+
<IntermediateOutputPath>temp\OtherCSharpProj\vs2019\v4_7_2\Release</IntermediateOutputPath>
3434
<DefineConstants>TRACE;WIN32</DefineConstants>
3535
<WarningLevel>4</WarningLevel>
3636
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/CPPCLI/reference/projects/TestCSharpConsole.vs2017.v4_6_2.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<DebugSymbols>true</DebugSymbols>
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
20-
<OutputPath>output\vs2017\v4_6_2\debug</OutputPath>
21-
<IntermediateOutputPath>temp\testcsharpconsole\vs2017\v4_6_2\debug</IntermediateOutputPath>
20+
<OutputPath>output\vs2017\v4_6_2\Debug</OutputPath>
21+
<IntermediateOutputPath>temp\TestCSharpConsole\vs2017\v4_6_2\Debug</IntermediateOutputPath>
2222
<DefineConstants>DEBUG;TRACE;WIN32</DefineConstants>
2323
<WarningLevel>4</WarningLevel>
2424
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -29,8 +29,8 @@
2929
<DebugSymbols>false</DebugSymbols>
3030
<DebugType>pdbonly</DebugType>
3131
<Optimize>true</Optimize>
32-
<OutputPath>output\vs2017\v4_6_2\release</OutputPath>
33-
<IntermediateOutputPath>temp\testcsharpconsole\vs2017\v4_6_2\release</IntermediateOutputPath>
32+
<OutputPath>output\vs2017\v4_6_2\Release</OutputPath>
33+
<IntermediateOutputPath>temp\TestCSharpConsole\vs2017\v4_6_2\Release</IntermediateOutputPath>
3434
<DefineConstants>TRACE;WIN32</DefineConstants>
3535
<WarningLevel>4</WarningLevel>
3636
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/CPPCLI/reference/projects/TestCSharpConsole.vs2019.v4_7_2.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<DebugSymbols>true</DebugSymbols>
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
20-
<OutputPath>output\vs2019\v4_7_2\debug</OutputPath>
21-
<IntermediateOutputPath>temp\testcsharpconsole\vs2019\v4_7_2\debug</IntermediateOutputPath>
20+
<OutputPath>output\vs2019\v4_7_2\Debug</OutputPath>
21+
<IntermediateOutputPath>temp\TestCSharpConsole\vs2019\v4_7_2\Debug</IntermediateOutputPath>
2222
<DefineConstants>DEBUG;TRACE;WIN32</DefineConstants>
2323
<WarningLevel>4</WarningLevel>
2424
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -29,8 +29,8 @@
2929
<DebugSymbols>false</DebugSymbols>
3030
<DebugType>pdbonly</DebugType>
3131
<Optimize>true</Optimize>
32-
<OutputPath>output\vs2019\v4_7_2\release</OutputPath>
33-
<IntermediateOutputPath>temp\testcsharpconsole\vs2019\v4_7_2\release</IntermediateOutputPath>
32+
<OutputPath>output\vs2019\v4_7_2\Release</OutputPath>
33+
<IntermediateOutputPath>temp\TestCSharpConsole\vs2019\v4_7_2\Release</IntermediateOutputPath>
3434
<DefineConstants>TRACE;WIN32</DefineConstants>
3535
<WarningLevel>4</WarningLevel>
3636
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/CPPCLI/reference/projects/clrcppproj.vs2017.v4_6_2.vcxproj

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,22 @@
4747
<PropertyGroup Label="UserMacros" />
4848
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
4949
<TargetName>clrcppproj</TargetName>
50-
<OutDir>output\win32\debug\</OutDir>
51-
<IntDir>temp\clrcppproj\vs2017\v4_6_2\debug\</IntDir>
50+
<OutDir>output\win32\Debug\</OutDir>
51+
<IntDir>temp\CLRCPPProj\vs2017\v4_6_2\Debug\</IntDir>
5252
<TargetExt>.dll</TargetExt>
5353
<GenerateManifest>true</GenerateManifest>
5454
<LinkIncremental>false</LinkIncremental>
55-
<OutputFile>output\win32\debug\clrcppproj.dll</OutputFile>
55+
<OutputFile>output\win32\Debug\clrcppproj.dll</OutputFile>
5656
<IgnoreImportLibrary>false</IgnoreImportLibrary>
5757
</PropertyGroup>
5858
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
5959
<TargetName>clrcppproj</TargetName>
60-
<OutDir>output\win32\release\</OutDir>
61-
<IntDir>temp\clrcppproj\vs2017\v4_6_2\release\</IntDir>
60+
<OutDir>output\win32\Release\</OutDir>
61+
<IntDir>temp\CLRCPPProj\vs2017\v4_6_2\Release\</IntDir>
6262
<TargetExt>.dll</TargetExt>
6363
<GenerateManifest>true</GenerateManifest>
6464
<LinkIncremental>false</LinkIncremental>
65-
<OutputFile>output\win32\release\clrcppproj.dll</OutputFile>
65+
<OutputFile>output\win32\Release\clrcppproj.dll</OutputFile>
6666
<IgnoreImportLibrary>false</IgnoreImportLibrary>
6767
</PropertyGroup>
6868
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
@@ -110,17 +110,17 @@
110110
<CallingConvention>Cdecl</CallingConvention>
111111
<CompileAs>Default</CompileAs>
112112
<AdditionalOptions>/Zc:__cplusplus</AdditionalOptions>
113-
<ProgramDatabaseFileName>temp\clrcppproj\vs2017\v4_6_2\debug\clrcppproj_compiler.pdb</ProgramDatabaseFileName>
113+
<ProgramDatabaseFileName>temp\CLRCPPProj\vs2017\v4_6_2\Debug\CLRCPPProj_compiler.pdb</ProgramDatabaseFileName>
114114
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
115115
</ClCompile>
116116
<Link>
117117
<SubSystem>Console</SubSystem>
118118
<GenerateDebugInformation>DebugFull</GenerateDebugInformation>
119119
<FullProgramDatabaseFile>true</FullProgramDatabaseFile>
120-
<OutputFile>output\win32\debug\clrcppproj.dll</OutputFile>
120+
<OutputFile>output\win32\Debug\clrcppproj.dll</OutputFile>
121121
<ShowProgress>NotSet</ShowProgress>
122-
<AdditionalLibraryDirectories>output\win32\debug</AdditionalLibraryDirectories>
123-
<ProgramDatabaseFile>output\win32\debug\clrcppproj.pdb</ProgramDatabaseFile>
122+
<AdditionalLibraryDirectories>output\win32\Debug</AdditionalLibraryDirectories>
123+
<ProgramDatabaseFile>output\win32\Debug\CLRCPPProj.pdb</ProgramDatabaseFile>
124124
<GenerateMapFile>true</GenerateMapFile>
125125
<MapExports>false</MapExports>
126126
<SwapRunFromCD>false</SwapRunFromCD>
@@ -145,7 +145,7 @@
145145
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
146146
<IgnoreSpecificDefaultLibraries></IgnoreSpecificDefaultLibraries>
147147
<LargeAddressAware>true</LargeAddressAware>
148-
<MapFileName>output\win32\debug\clrcppproj.map</MapFileName>
148+
<MapFileName>output\win32\Debug\clrcppproj.map</MapFileName>
149149
</Link>
150150
</ItemDefinitionGroup>
151151
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
@@ -193,17 +193,17 @@
193193
<CallingConvention>Cdecl</CallingConvention>
194194
<CompileAs>Default</CompileAs>
195195
<AdditionalOptions>/Zc:__cplusplus</AdditionalOptions>
196-
<ProgramDatabaseFileName>temp\clrcppproj\vs2017\v4_6_2\release\clrcppproj_compiler.pdb</ProgramDatabaseFileName>
196+
<ProgramDatabaseFileName>temp\CLRCPPProj\vs2017\v4_6_2\Release\CLRCPPProj_compiler.pdb</ProgramDatabaseFileName>
197197
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
198198
</ClCompile>
199199
<Link>
200200
<SubSystem>Console</SubSystem>
201201
<GenerateDebugInformation>DebugFull</GenerateDebugInformation>
202202
<FullProgramDatabaseFile>true</FullProgramDatabaseFile>
203-
<OutputFile>output\win32\release\clrcppproj.dll</OutputFile>
203+
<OutputFile>output\win32\Release\clrcppproj.dll</OutputFile>
204204
<ShowProgress>NotSet</ShowProgress>
205-
<AdditionalLibraryDirectories>output\win32\release</AdditionalLibraryDirectories>
206-
<ProgramDatabaseFile>output\win32\release\clrcppproj.pdb</ProgramDatabaseFile>
205+
<AdditionalLibraryDirectories>output\win32\Release</AdditionalLibraryDirectories>
206+
<ProgramDatabaseFile>output\win32\Release\CLRCPPProj.pdb</ProgramDatabaseFile>
207207
<GenerateMapFile>true</GenerateMapFile>
208208
<MapExports>false</MapExports>
209209
<SwapRunFromCD>false</SwapRunFromCD>
@@ -228,7 +228,7 @@
228228
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
229229
<IgnoreSpecificDefaultLibraries></IgnoreSpecificDefaultLibraries>
230230
<LargeAddressAware>true</LargeAddressAware>
231-
<MapFileName>output\win32\release\clrcppproj.map</MapFileName>
231+
<MapFileName>output\win32\Release\clrcppproj.map</MapFileName>
232232
</Link>
233233
</ItemDefinitionGroup>
234234
<ItemGroup>

0 commit comments

Comments
 (0)