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
12 changes: 7 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
DOTNET_VERSION: 6.x
DOTNET_VERSION: |
6.x
9.0.3xx
DOTNET_QUALITY: ga

jobs:
Expand All @@ -29,13 +31,13 @@ jobs:
dotnet-quality: ${{ env.DOTNET_QUALITY }}

- name: Restore dependencies
run: dotnet restore *.sln
run: dotnet restore *.slnx

- name: Build project
run: dotnet build *.sln --no-restore -c Release
run: dotnet build *.slnx --no-restore -c Release

- name: Pack
run: dotnet pack *.sln --no-build -c Release
run: dotnet pack *.slnx --no-build -c Release

- name: Publish build artifacts
uses: actions/upload-artifact@v4
Expand All @@ -56,7 +58,7 @@ jobs:
# path: ${{ github.workspace }}

# - name: Run tests
# run: dotnet test *.sln --no-build -c Release
# run: dotnet test *.slnx --no-build -c Release

publish:
name: Publish
Expand Down
55 changes: 0 additions & 55 deletions DistributedLeaseManager.sln

This file was deleted.

8 changes: 8 additions & 0 deletions DistributedLeaseManager.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Solution>
<Project Path="DistributedLeaseManager.AzureBlobStorage/DistributedLeaseManager.AzureBlobStorage.csproj" />
<Project Path="DistributedLeaseManager.AzureCosmosDb/DistributedLeaseManager.AzureCosmosDb.csproj" />
<Project Path="DistributedLeaseManager.Core/DistributedLeaseManager.Core.csproj" />
<Project Path="DistributedLeaseManager.EntityFrameworkCore/DistributedLeaseManager.EntityFrameworkCore.csproj" />
<Project Path="DistributedLeaseManager.Example/DistributedLeaseManager.Example.csproj" />
<Project Path="_misc.csproj" />
</Solution>
2 changes: 1 addition & 1 deletion _misc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<ItemGroup>
<None Include="**/*" />
<None Remove=".git/**;.vs/**;obj/**;*.sln;_misc.csproj;DistributedLeaseManager*/**" />
<None Remove=".git/**;.vs/**;obj/**;*.slnx;_misc.csproj;DistributedLeaseManager*/**" />
</ItemGroup>

</Project>
Loading