Skip to content

Commit 83b1a50

Browse files
committed
Pushed net5 dependencies to final version
1 parent 0908052 commit 83b1a50

7 files changed

Lines changed: 28 additions & 28 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
dotnet-version: '3.1.x'
3636
- uses: actions/setup-dotnet@v1
3737
with:
38-
dotnet-version: '5.0.100-rc.2.20479.15'
38+
dotnet-version: '5.0.x'
3939

4040
- name: Building library
4141
run: dotnet build /p:PublicRelease=true

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
dotnet-version: '3.1.x'
4040
- uses: actions/setup-dotnet@v1
4141
with:
42-
dotnet-version: '5.0.100-rc.2.20479.15'
42+
dotnet-version: '5.0.x'
4343

4444
- name: Building library in release mode
4545
run: dotnet build -c Release -p:ContinuousIntegrationBuild=true
@@ -58,7 +58,7 @@ jobs:
5858
dotnet-version: '3.1.x'
5959
- uses: actions/setup-dotnet@v1
6060
with:
61-
dotnet-version: '5.0.100-rc.2.20479.15'
61+
dotnet-version: '5.0.x'
6262

6363
- name: Running unit tests
6464
run: |
@@ -99,7 +99,7 @@ jobs:
9999
dotnet-version: '3.1.x'
100100
- uses: actions/setup-dotnet@v1
101101
with:
102-
dotnet-version: '5.0.100-rc.2.20479.15'
102+
dotnet-version: '5.0.x'
103103

104104
- name: Creating library package
105105
run: |
@@ -140,7 +140,7 @@ jobs:
140140
dotnet-version: '3.1.x'
141141
- uses: actions/setup-dotnet@v1
142142
with:
143-
dotnet-version: '5.0.100-rc.2.20479.15'
143+
dotnet-version: '5.0.x'
144144

145145
- name: Install dotnet-sonarscanner
146146
run: dotnet tool install --global dotnet-sonarscanner
@@ -173,7 +173,7 @@ jobs:
173173
dotnet-version: '3.1.x'
174174
- uses: actions/setup-dotnet@v1
175175
with:
176-
dotnet-version: '5.0.100-rc.2.20479.15'
176+
dotnet-version: '5.0.x'
177177

178178
- name: Initialize CodeQL
179179
uses: github/codeql-action/init@v1
@@ -219,7 +219,7 @@ jobs:
219219
dotnet-version: '3.1.x'
220220
- uses: actions/setup-dotnet@v1
221221
with:
222-
dotnet-version: '5.0.100-rc.2.20479.15'
222+
dotnet-version: '5.0.x'
223223

224224
- name: Creating library package for pre-release
225225
if: github.event_name != 'release'

docs/samples/components/bunit.docs.samples.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
</ItemGroup>
1616

1717
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
18-
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0-rc.1.*" />
19-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0-rc.1.*" />
20-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0-rc.1.*" />
21-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0-rc.1.*" />
22-
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="5.0.0-rc.1.*" />
18+
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
19+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
20+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0" />
21+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0" />
22+
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="5.0.0" />
2323
</ItemGroup>
2424

2525
</Project>

src/Directory.Build.props

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040
</ItemGroup>
4141

4242
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0' AND $(MSBuildProjectName) != 'bunit.template' AND $(MSBuildProjectName) != 'bunit'">
43-
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="5.0.0-rc.2.*" />
44-
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0-rc.2.*" />
45-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0-rc.2.*" />
46-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0-rc.2.*" />
47-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0-rc.2.*" />
43+
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="5.0.0" />
44+
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
45+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
46+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0" />
47+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0" />
4848
</ItemGroup>
4949

5050
<ItemGroup>

src/bunit.web/bunit.web.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<RazorLangVersion>3.0</RazorLangVersion>
@@ -33,7 +33,7 @@
3333
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="3.1.1" />
3434
</ItemGroup>
3535
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
36-
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="5.0.0-rc.2.*" />
36+
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="5.0.0" />
3737
</ItemGroup>
3838

3939
<ItemGroup>

tests/Directory.Build.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
</ItemGroup>
2020

2121
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0' AND $(MSBuildProjectName) != 'bunit.testassets'">
22-
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0-rc.2.*" />
23-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0-rc.2.*" />
24-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0-rc.2.*" />
25-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0-rc.2.*" />
22+
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
23+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
24+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0" />
25+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0" />
2626
</ItemGroup>
2727

2828
<ItemGroup Condition="$(MSBuildProjectName) != 'bunit.testassets'">

tests/bunit.testassets/bunit.testassets.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Razor">
1+
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.1;net5.0</TargetFrameworks>
@@ -29,10 +29,10 @@
2929
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="3.1.1" />
3030
</ItemGroup>
3131
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
32-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0-rc.2.*" />
33-
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="5.0.0-rc.2.*" />
34-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0-rc.2.*" />
35-
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="5.0.0-rc.2.*" />
32+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0" />
33+
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="5.0.0" />
34+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0" />
35+
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="5.0.0" />
3636
</ItemGroup>
3737

3838
</Project>

0 commit comments

Comments
 (0)