mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 05:34:51 +00:00
Updated all projects to target .NET 10.0, removing support for .NET 6.0. Upgraded key dependencies, including: - `Microsoft.Build` and `Microsoft.Build.Tasks.Core` to 18.0.2. - `Nuke.Common` to 10.1.0. - `System.Drawing.Common` to 10.0.1. - `System.Text.Json` to 10.0.1. Removed `NoWarn` configurations for .NET 6.0 in `ElectronNET.AspNet.csproj`. Reformatted the `Copy` task in `ElectronNET.Build.csproj` for readability. Updated `.pubxml` files and other project files to reflect the framework upgrade.
24 lines
724 B
XML
24 lines
724 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<RootNamespace></RootNamespace>
|
|
<NoWarn>CS0649;CS0169</NoWarn>
|
|
<NukeRootDirectory>..</NukeRootDirectory>
|
|
<NukeScriptDirectory>..</NukeScriptDirectory>
|
|
<NukeTelemetryVersion>1</NukeTelemetryVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Build" Version="18.0.2" />
|
|
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="18.0.2" />
|
|
<PackageReference Include="Nuke.Common" Version="10.1.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageDownload Include="NuGet.CommandLine" Version="[6.12.2]" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|