Skip to content

Commit d43660b

Browse files
authored
Fix Build issues (#8)
* Fix Build issues * Update msbuild project paths
1 parent 2055530 commit d43660b

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

.vscode/settings.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
{
33
"files.exclude": {
44
"bin": true
5-
}
6-
}
5+
},
6+
"csharp.suppressDotnetRestoreNotification": true
7+
}

src/index/index.proj

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<Target Name="Clone" DependsOnTargets="PrepareOutput" Outputs="%(Repository.Identity)">
3535
<PropertyGroup>
3636
<CloneCommand>git clone %(Repository.Url).git -b %(Branch) --single-branch</CloneCommand>
37-
<CloneCommand Condition="'%(Repository.OldCommit)' == ''">$(CloneCommand) --depth 1</CloneCommand>
37+
<CloneCommand Condition="'%(Repository.OldCommit)' == '' and '%(Repository.DeepClone)' != 'true'">$(CloneCommand) --depth 1</CloneCommand>
3838
<CloneCommand>$(CloneCommand) %(Repository.LocalPath)</CloneCommand>
3939

4040
<CheckoutCommand Condition="'%(Repository.OldCommit)' != ''">git -C %(Repository.LocalPath) checkout %(Repository.OldCommit)</CheckoutCommand>

src/index/repositories.props

+10-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<VsDevCmd>pushd . &amp; "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsDevCmd.bat" &amp; popd</VsDevCmd>
5+
</PropertyGroup>
36
<ItemGroup>
47
<Repository Include="corefx">
58
<Url>https://github.com/dotnet/corefx</Url>
@@ -10,7 +13,7 @@
1013
src/*/tests/*.vbproj;
1114
</Projects>
1215
<PrepareCommand>
13-
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsDevCmd.bat" &amp; build -SkipTests
16+
$(VsDevCmd) &amp; build-managed
1417
</PrepareCommand>
1518
</Repository>
1619
<Repository Include="corefxlab">
@@ -19,7 +22,7 @@
1922
src/**/*.csproj;
2023
</Projects>
2124
<PrepareCommand>
22-
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsDevCmd.bat" &amp; build
25+
$(VsDevCmd) &amp; build
2326
</PrepareCommand>
2427
</Repository>
2528
<Repository Include="coreclr">
@@ -28,29 +31,23 @@
2831
src/mscorlib/System.Private.CoreLib.csproj;
2932
</Projects>
3033
<PrepareCommand>
31-
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsDevCmd.bat" &amp; build skiptests skipnative
34+
$(VsDevCmd) &amp; run build -Project=build.proj
3235
</PrepareCommand>
3336
</Repository>
3437
<Repository Include="msbuild">
3538
<Url>https://github.com/Microsoft/msbuild</Url>
3639
<Branch>master</Branch>
37-
<OldCommit>91c86a746b312fce1aba31f8fb8540e949c11a01</OldCommit>
40+
<DeepClone>true</DeepClone>
3841
<Projects>
39-
build/**/*.csproj;
40-
build/**/*.vbproj;
4142
src/**/*.csproj;
4243
src/**/*.vbproj;
43-
targets/**/*.csproj;
44-
targets/**/*.vbproj;
4544
</Projects>
4645
<ExcludeProjects>
47-
src/OrcasEngine/UnitTests/OrcasEngineUnitTests.csproj;
48-
src/XMakeBuildEngine/ApexTests/ApexTests.csproj;
49-
src/XMakeConversion/UnitTests/XMakeConversionUnitTests.csproj;
50-
src/XMakeTasks/XMakeTasksUnitTests/XMakeTasksUnitTests.csproj;
46+
src/Deprecated/**/*.csproj;
47+
src/Deprecated/**/*.vbproj;
5148
</ExcludeProjects>
5249
<PrepareCommand>
53-
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsDevCmd.bat" &amp; cibuild --target CoreCLR --build-only
50+
$(VsDevCmd) &amp; build -hostType Core -skipTests -bootstrapOnly
5451
</PrepareCommand>
5552
</Repository>
5653
<Repository Include="wcf">

0 commit comments

Comments
 (0)