Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWes Haggard <Wes.Haggard@microsoft.com>2017-10-24 02:12:58 +0300
committerWes Haggard <Wes.Haggard@microsoft.com>2017-10-25 18:49:47 +0300
commita05d99a5851977ddb006aee1c10d2ef427d16697 (patch)
treeb83b9b089796fd33cd088626ea1efcab8d67168a /dir.props
parent8f431835d29b80e761436d8c292ffa0af0df1220 (diff)
Fix file casing in project file
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props8
1 files changed, 6 insertions, 2 deletions
diff --git a/dir.props b/dir.props
index ece69a00a9..d2b7dc7269 100644
--- a/dir.props
+++ b/dir.props
@@ -78,6 +78,10 @@
<DotnetSourceList Include="https:%2F%2Fapi.nuget.org/v3/index.json" />
</ItemGroup>
+ <ItemGroup>
+ <DotnetSourceList Include="$(DotNetSourceBuildRestoreSources)" />
+ </ItemGroup>
+
<PropertyGroup>
<!-- By default make all libraries to be AnyCPU but individual projects can override it if they need to -->
<Platform>AnyCPU</Platform>
@@ -240,9 +244,9 @@
<TestPath Condition="'$(TestPath)' == ''">$(TestWorkingDir)$(MSBuildProjectName)/$(BuildConfiguration)/</TestPath>
<RefRootPath>$(BinDir)ref/</RefRootPath>
<BuildConfigurationRefPath>$(RefRootPath)$(_bc_TargetGroup)/</BuildConfigurationRefPath>
- <BuildConfigurationRefPath Condition="$(_bc_TargetGroup.EndsWith('aot'))">$(RefRootPath)$(_bc_TargetGroup.TrimEnd('aot'))/</BuildConfigurationRefPath>
+ <BuildConfigurationRefPath Condition="$(_bc_TargetGroup.EndsWith('aot'))">$(RefRootPath)$(_bc_TargetGroup.TrimEnd('t').TrimEnd('o').TrimEnd('a'))/</BuildConfigurationRefPath>
<RefPath>$(RefRootPath)$(TargetGroup)/</RefPath>
- <RefPath Condition="$(TargetGroup.EndsWith('aot'))">$(RefRootPath)$(TargetGroup.TrimEnd('aot'))/</RefPath>
+ <RefPath Condition="$(TargetGroup.EndsWith('aot'))">$(RefRootPath)$(TargetGroup.TrimEnd('t').TrimEnd('o').TrimEnd('a'))/</RefPath>
<NetStandardRefPath>$(RefRootPath)netstandard/</NetStandardRefPath>
<NetFxRefPath>$(RefRootPath)netfx/</NetFxRefPath>