You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Microsoft.DotNet.Arcade.Sdk/tools/Build.proj
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,12 @@
82
82
<ErrorText="Property 'RepoRoot' must be specified"Condition="'$(_RepoRootOriginal)' == ''"/>
83
83
<ErrorText="File 'global.json' must exist in directory specified by RepoRoot: '$(_RepoRootOriginal)'"Condition="'$(_RepoRootOriginal)' != '' and !Exists('$(RepoRoot)global.json')"/>
84
84
85
+
<PropertyGroup>
86
+
<!-- IsRunningFromVisualStudio may be true even when running msbuild.exe from command line. This generally means that MSBUild is Visual Studio installation and therefore we need to find NuGet.targets in a different location. -->
<!-- IsRunningFromVisualStudio may be true even when running msbuild.exe from command line. This generally means that MSBUild is Visual Studio installation and therefore we need to find NuGet.targets in a different location. -->
Copy file name to clipboardExpand all lines: src/Microsoft.DotNet.Arcade.Sdk/tools/Tools.proj
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,11 @@
1
1
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
2
-
<ProjectSdk="Microsoft.NET.Sdk">
2
+
<Project>
3
3
<ImportProject="BuildStep.props" />
4
4
5
+
<!-- Properties requires by NuGet.targets to restore PackageReferences -->
0 commit comments