Skip to content

Commit

Permalink
Updated .NET version from 6.0 to 8.0 (#669)
Browse files Browse the repository at this point in the history
Co-authored-by: Maarten van Stam <[email protected]>
  • Loading branch information
aafvstam and Maarten van Stam authored Feb 7, 2024
1 parent 39fd11b commit 77feb5f
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 28 deletions.
7 changes: 4 additions & 3 deletions Samples/blazor-add-in/excel-blazor-add-in/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,10 @@ Create a Blazor Webassembly Excel add-in | [Maarten van Stam](https://mvp.micros

## Version history

Version | Date | Comments
---------| -----| --------
1.0 | May 27, 2022 | Initial release
Version | Date | Comments
---------| ---------------- | ------------------
1.0 | May 27, 2022 | Initial release
2.0 | February 1, 2024 | Upgraded to .NET 8

## Copyright

Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TargetOfficeVersion>15.0</TargetOfficeVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.5" PrivateAssets="all" />
<PackageReference Include="Microsoft.JSInterop.WebAssembly" Version="6.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.1" PrivateAssets="all" />
<PackageReference Include="Microsoft.JSInterop.WebAssembly" Version="8.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h2>Loading...</h2>
</div>
<footer class="d-flex align-items-center justify-content-center">
<div class="row">
Copyright © 2022 Maarten van Stam.
Copyright © 2024 Maarten van Stam.
</div>
<div class="row">
All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Id>4aeb7f5e-a283-4a08-83f7-5e7271e4fa2a</Id>

<!--Version. Updates from the store only get triggered if there is a version change. -->
<Version>1.0.0.0</Version>
<Version>2.0.0.0</Version>
<ProviderName>Contoso</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<!-- The display name of your add-in. Used on the store and various places of the Office UI such as the add-ins dialog. -->
Expand Down
8 changes: 4 additions & 4 deletions Samples/blazor-add-in/outlook-blazor-add-in/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@ This sample is configured to support debugging both JavaScript and C# files. New

## Version history

| Version | Date | Comments |
| ------- | --------------- | --------------- |
| 1.0 | August 25, 2022 | Initial release |

| Version | Date | Comments |
| ------- | --------------- | ------------------ |
| 1.0 | August 25, 2022 | Initial release |
| 2.0 | February 1, 2024 | Upgraded to .NET 8 |
## Copyright

Copyright(c) Maarten van Stam and Eric Legault. All rights reserved. Licensed under the MIT License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TargetOfficeVersion>15.0</TargetOfficeVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.8" />
<PackageReference Include="Microsoft.JSInterop.WebAssembly" Version="6.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.1" />
<PackageReference Include="Microsoft.JSInterop.WebAssembly" Version="8.0.1" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h2>Loading...</h2>
</div>
</div>
<footer class="d-flex align-items-center justify-content-center">
<div class="row">Copyright © 2022 Maarten van Stam and Eric Legault</div>
<div class="row">Copyright © 2024 Maarten van Stam and Eric Legault</div>
<div class="row">All rights reserved.</div>
</footer>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Id>6afb80de-f71b-4c5b-9dc8-3be5153055f6</Id>

<!--Version. Updates from the store only get triggered if there is a version change. -->
<Version>1.0.0.0</Version>
<Version>2.0.0.0</Version>
<ProviderName>Eric Legault Consulting Inc.</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<!-- The display name of your add-in. Used on the store and various places of the Office UI such as the add-ins dialog. -->
Expand Down
7 changes: 4 additions & 3 deletions Samples/blazor-add-in/word-blazor-add-in/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,10 @@ This sample is configured to support debugging both JavaScript and C# files. New

## Version history

| Version | Date | Comments |
| ------- | -------------- | --------------- |
| 1.0 | April 25, 2022 | Initial release |
| Version | Date | Comments |
| ------- | ---------------- | ------------------ |
| 1.0 | April 25, 2022 | Initial release |
| 2.0 | February 1, 2024 | Upgraded to .NET 8 |

## Copyright

Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TargetOfficeVersion>15.0</TargetOfficeVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.4" PrivateAssets="all" />
<PackageReference Include="Microsoft.JSInterop.WebAssembly" Version="6.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.1" PrivateAssets="all" />
<PackageReference Include="Microsoft.JSInterop.WebAssembly" Version="8.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h2>Loading...</h2>
</div>
<footer class="d-flex align-items-center justify-content-center">
<div class="row">
Copyright © 2022 Maarten van Stam.
Copyright © 2024 Maarten van Stam.
</div>
<div class="row">
All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Id>303da7ed-183e-412e-9234-8e80cff67ace</Id>

<!--Version. Updates from the store only get triggered if there is a version change. -->
<Version>1.0.0.0</Version>
<Version>2.0.0.0</Version>
<ProviderName>Contoso</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<!-- The display name of your add-in. Used on the store and various places of the Office UI such as the add-ins dialog. -->
Expand Down

0 comments on commit 77feb5f

Please sign in to comment.