Skip to content

Commit 6a93240

Browse files
committed
More PR feedback
1 parent 4c92e35 commit 6a93240

3 files changed

+6
-5
lines changed

Diff for: eng/ProjectReferences.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
-->
66
<Project>
77
<ItemGroup>
8-
<ProjectReferenceProvider Include="Microsoft.AspNetCore.App.Internal.Assets" ProjectPath="$(RepoRoot)src\Assets\Pack\Microsoft.AspNetCore.App.Internal.Assets.csproj" />
8+
<ProjectReferenceProvider Include="Microsoft.AspNetCore.App.Internal.Assets" ProjectPath="$(RepoRoot)src\Assets\Microsoft.AspNetCore.App.Internal.Assets.csproj" />
99
<ProjectReferenceProvider Include="Microsoft.Extensions.Caching.SqlServer" ProjectPath="$(RepoRoot)src\Caching\SqlServer\src\Microsoft.Extensions.Caching.SqlServer.csproj" />
1010
<ProjectReferenceProvider Include="Microsoft.Extensions.Caching.StackExchangeRedis" ProjectPath="$(RepoRoot)src\Caching\StackExchangeRedis\src\Microsoft.Extensions.Caching.StackExchangeRedis.csproj" />
1111
<ProjectReferenceProvider Include="Microsoft.AspNetCore" ProjectPath="$(RepoRoot)src\DefaultBuilder\src\Microsoft.AspNetCore.csproj" />

Diff for: src/Assets/Microsoft.AspNetCore.App.Internal.Assets.csproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<PackageId>Microsoft.AspNetCore.App.Internal.Assets</PackageId>
77
<IsPackable>true</IsPackable>
88
<OutputType>Library</OutputType>
9+
<ExcludeFromSourceOnlyBuild>true</ExcludeFromSourceOnlyBuild>
910
<CopyBuildOutputToOutputDirectory>false</CopyBuildOutputToOutputDirectory>
1011
<IncludeBuildOutput>false</IncludeBuildOutput>
1112
<IncludeSymbols>false</IncludeSymbols>
@@ -30,8 +31,8 @@
3031
</ItemGroup>
3132

3233
<PropertyGroup>
33-
<_BlazorJSContentRoot Condition="'$(Configuration)' == 'Debug'">..\..\Components\Web.JS\dist\Debug</_BlazorJSContentRoot>
34-
<_BlazorJSContentRoot Condition="'$(Configuration)' == 'Release'">..\..\Components\Web.JS\dist\Release</_BlazorJSContentRoot>
34+
<_BlazorJSContentRoot Condition="'$(Configuration)' == 'Debug'">$(RepoRoot)src\Components\Web.JS\dist\Debug</_BlazorJSContentRoot>
35+
<_BlazorJSContentRoot Condition="'$(Configuration)' == 'Release'">$(RepoRoot)src\Components\Web.JS\dist\Release</_BlazorJSContentRoot>
3536
</PropertyGroup>
3637

3738
<ItemGroup>

Diff for: src/Assets/build/Microsoft.AspNetCore.App.Internal.Assets.targets

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$(MSBuildThisFileDirectory)Microsoft.AspNetCore.StaticWebAssets.endpoints.targets" />
44

55
<Import Project="$(MSBuildThisFileDirectory)Microsoft.AspNetCore.StaticWebAssets.debug.targets"
6-
Condition="'$(Configuration)' == 'Debug'" />
6+
Condition="'$(UseDebugBlazorAssets)' == 'true'" />
77
<Import Project="$(MSBuildThisFileDirectory)Microsoft.AspNetCore.StaticWebAssets.debug.endpoints.targets"
8-
Condition="'$(Configuration)' == 'Debug'"/>
8+
Condition="'$(UseDebugBlazorAssets)' == 'true'"/>
99
</Project>

0 commit comments

Comments
 (0)