Skip to content

Commit 4aafa81

Browse files
committed
a couple of quick changes to allow building in the docker-compose.ci.build.yml
1 parent 9e25000 commit 4aafa81

6 files changed

Lines changed: 7 additions & 6 deletions

File tree

NuGet.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json" />
4+
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnet-feb2017-patch/api/v3/index.json" />
55
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
66
</packageSources>
77
</configuration>

src/Services/Identity/Identity.API/Identity.API.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
</ItemGroup>
6161

6262
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
63-
<Exec Command="bower install" />
63+
<Exec Command="bower install --allow-root" />
6464
<Exec Command="dotnet bundle" />
6565
</Target>
6666

src/Services/Identity/Identity.API/wwwroot/css/site.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Web/WebMVC/WebMVC.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
</ItemGroup>
4141

4242
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
43-
<Exec Command="bower install" />
43+
<Exec Command="bower install --allow-root" />
4444
<Exec Command="dotnet bundle" Condition="'$(ASPNETCORE_ENVIRONMENT)'!='Development'" />
4545
</Target>
4646

src/Web/WebMVC/wwwroot/css/site.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/Services/FunctionalTests/FunctionalTests.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<Content Include="settings.json;web.config">
16+
<!--<Content Include="settings.json;web.config">-->
17+
<Content Include="settings.json">
1718
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
1819
</Content>
1920
</ItemGroup>

0 commit comments

Comments
 (0)