Skip to content

Commit

Permalink
Merge pull request #36 from ravendb/feature/#35
Browse files Browse the repository at this point in the history
  • Loading branch information
AKlaus authored Aug 22, 2021
2 parents d813d06 + e611219 commit ea5e54e
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_back-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.203
dotnet-version: 5.0.302
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/db_migration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.203
dotnet-version: 5.0.302

- name: Build
run: dotnet build tools/Database.Migration/Database.Migration.csproj --configuration Release
Expand Down
2 changes: 1 addition & 1 deletion back-end/Database/Database.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="RavenDB.Client" Version="5.1.8" />
<PackageReference Include="RavenDB.Client" Version="5.2.2" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion back-end/Domain/Domain.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<ItemGroup>
<PackageReference Include="DomainResult.Common" Version="1.1.1" />
<PackageReference Include="RavenDB.Client" Version="5.1.8" />
<PackageReference Include="RavenDB.Client" Version="5.2.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion back-end/WebApi/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Database": {
"RavenDbUrls": [ "https://xxx.ravendb.cloud" ],
"Certificate": "",
"DbName": "Yabt1"
"DbName": "Yabt2"
},
"DatabaseSession": {
"WaitForIndexesAfterSaveChanges": null,
Expand Down
4 changes: 2 additions & 2 deletions devops/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# See the list of tags at https://mcr.microsoft.com/v2/dotnet/sdk/tags/list
FROM mcr.microsoft.com/dotnet/sdk:5.0.203 as back-end-build
FROM mcr.microsoft.com/dotnet/sdk:5.0.302 as back-end-build

WORKDIR /build
COPY . /build
Expand All @@ -16,7 +16,7 @@ RUN npm install \
&& node_modules/.bin/ng build --prod

# See the list of tags at https://mcr.microsoft.com/v2/dotnet/aspnet/tags/list
FROM mcr.microsoft.com/dotnet/aspnet:5.0.6 AS runtime
FROM mcr.microsoft.com/dotnet/aspnet:5.0.8 AS runtime

COPY --from=back-end-build /publish /app
COPY --from=front-end-build /client/dist /app/wwwroot
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="RavenDB.TestDriver" Version="5.1.8" />
<PackageReference Include="RavenDB.TestDriver" Version="5.2.2" />
<PackageReference Include="RavenMigrations" Version="5.0.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
Expand Down
2 changes: 1 addition & 1 deletion tests/Database.Tests/Database.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="RavenDB.TestDriver" Version="5.1.8" />
<PackageReference Include="RavenDB.TestDriver" Version="5.2.2" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion tests/Domain.Tests/Domain.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
<PackageReference Include="NSubstitute" Version="4.2.2" />
<PackageReference Include="RavenDB.TestDriver" Version="5.1.8" />
<PackageReference Include="RavenDB.TestDriver" Version="5.2.2" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit ea5e54e

Please sign in to comment.