Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 0 additions & 63 deletions EssentialCSharp.Web.sln

This file was deleted.

19 changes: 19 additions & 0 deletions EssentialCSharp.Web.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<Solution>
<Folder Name="/Solution Items/">
<File Path="../.gitattributes" />
<File Path="../azure-pipelines.yml" />
<File Path=".editorconfig" />
<File Path="Directory.Build.props" />
<File Path="Directory.Build.targets" />
<File Path="Directory.Packages.props" />
<File Path="EssentialCSharp.Web/Dockerfile" />
<File Path="global.json" />
<File Path="nuget.config" />
<File Path="README.md" />
</Folder>
<Project Path="EssentialCSharp.Chat.Shared/EssentialCSharp.Chat.Common.csproj" />
<Project Path="EssentialCSharp.Chat.Tests/EssentialCSharp.Chat.Tests.csproj" />
<Project Path="EssentialCSharp.Chat/EssentialCSharp.Chat.csproj" />
<Project Path="EssentialCSharp.Web.Tests/EssentialCSharp.Web.Tests.csproj" />
<Project Path="EssentialCSharp.Web/EssentialCSharp.Web.csproj" />
</Solution>
6 changes: 3 additions & 3 deletions EssentialCSharp.Web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ RUN --mount=type=secret,id=nuget_auth_token \
auth_token=$(cat /run/secrets/nuget_auth_token) && \
export VSS_NUGET_EXTERNAL_FEED_ENDPOINTS="{\"endpointCredentials\": [{\"endpoint\":\"https://pkgs.dev.azure.com/intelliTect/_packaging/EssentialCSharp/nuget/v3/index.json\", \"password\":\"$auth_token\"}]}"; \
fi && \
dotnet restore "EssentialCSharp.Web.sln" -p:AccessToNugetFeed=$ACCESS_TO_NUGET_FEED && \
dotnet build "EssentialCSharp.Web.sln" -c Release --no-restore -p:AccessToNugetFeed=$ACCESS_TO_NUGET_FEED -p:ReleaseDateAttribute=True && \
dotnet publish "EssentialCSharp.Web.sln" -c Release -p:PublishDir=/app/publish -p:UseAppHost=false --no-build
dotnet restore "EssentialCSharp.Web.slnx" -p:AccessToNugetFeed=$ACCESS_TO_NUGET_FEED && \
dotnet build "EssentialCSharp.Web.slnx" -c Release --no-restore -p:AccessToNugetFeed=$ACCESS_TO_NUGET_FEED -p:ReleaseDateAttribute=True && \
dotnet publish "EssentialCSharp.Web.slnx" -c Release -p:PublishDir=/app/publish -p:UseAppHost=false --no-build

FROM base AS final
WORKDIR /app
Expand Down