Skip to content

Commit 354f565

Browse files
authored
Merge pull request #1 from boriel-basic/Net8
Update to .Net8
2 parents 33212bf + 6bee515 commit 354f565

9 files changed

Lines changed: 26 additions & 26 deletions

File tree

Bufdio/Bufdio.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>

CoreSpectrum/CoreSpectrum.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>

HeadlessEmulator/HeadlessEmulator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

MsBox.Avalonia/MsBox.Avalonia.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<RepositoryUrl>messagebox.avalonia</RepositoryUrl>
1111
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1212
<PackageTags>Avalonia MessageBox</PackageTags>
13-
<TargetFramework>netstandard2.0</TargetFramework>
13+
<TargetFramework>netstandard2.1</TargetFramework>
1414
<LangVersion>latest</LangVersion>
1515
<SignAssembly>true</SignAssembly>
1616
<AssemblyOriginatorKeyFile>strong-key.snk</AssemblyOriginatorKeyFile>
@@ -26,8 +26,9 @@
2626
<AvaloniaResource Include="Assets\*" />
2727
</ItemGroup>
2828
<ItemGroup>
29-
<PackageReference Include="Avalonia" Version="11.0.6" />
30-
<PackageReference Include="DialogHost.Avalonia" Version="0.7.7" />
29+
<PackageReference Include="Avalonia" Version="11.1.2" />
30+
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.1.0" />
31+
<PackageReference Include="DialogHost.Avalonia" Version="0.7.9" />
3132
<PackageReference Include="Markdown.Avalonia.Tight" Version="11.0.2" />
3233
</ItemGroup>
3334
<ItemGroup>

Rom128Reconstructor/Rom128Reconstructor.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

RomReconstructor/RomReconstructor.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<Platforms>AnyCPU;x64</Platforms>

Z80dotNet/Main/Main.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
77
<Platforms>AnyCPU;x64</Platforms>
88
</PropertyGroup>

ZXBStudio/ZXBasicStudio.csproj

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
77
<ApplicationManifest>app.manifest</ApplicationManifest>
@@ -10,11 +10,10 @@
1010
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
1111
<Platforms>AnyCPU;x64</Platforms>
1212
<ApplicationIcon>zxbs.ico</ApplicationIcon>
13-
<Version>1.0.0-beta1</Version>
1413
<Title>ZX Basic Studio</Title>
15-
<AssemblyVersion>1.0.*</AssemblyVersion>
14+
<AssemblyVersion>1.2.*</AssemblyVersion>
1615
<Deterministic>False</Deterministic>
17-
<Version>0.1.23.1014</Version>
16+
<Version>1.1</Version>
1817
</PropertyGroup>
1918
<ItemGroup>
2019
<AvaloniaXaml Remove="LanguageDefinitions\**" />
@@ -527,14 +526,14 @@
527526
</ItemGroup>
528527

529528
<ItemGroup>
530-
<PackageReference Include="Avalonia" Version="11.0.6" />
531-
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.0.6" />
532-
<PackageReference Include="Avalonia.Desktop" Version="11.0.6" />
533-
<PackageReference Include="Avalonia.Svg.Skia" Version="11.0.0.10" />
534-
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.6" />
529+
<PackageReference Include="Avalonia" Version="11.1.2" />
530+
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.1.0" />
531+
<PackageReference Include="Avalonia.Desktop" Version="11.1.2" />
532+
<PackageReference Include="Avalonia.Svg.Skia" Version="11.1.0" />
533+
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.1.2" />
535534
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
536-
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.6" />
537-
<PackageReference Include="Avalonia.Themes.Simple" Version="11.0.6" />
535+
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.1.2" />
536+
<PackageReference Include="Avalonia.Themes.Simple" Version="11.1.2" />
538537
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
539538
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
540539
<PackageReference Include="System.Resources.ResourceManager" Version="4.3.0" />
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.2" />
11-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.2" PrivateAssets="all" />
10+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.7" />
11+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.7" PrivateAssets="all" />
1212
</ItemGroup>
1313

1414
</Project>

0 commit comments

Comments
 (0)