Skip to content

Commit c43656c

Browse files
authored
feat: Update to .NET 10.0 (#23)
* feat: Update to .NET 10.0 * Update license config
1 parent 9f8be8a commit c43656c

8 files changed

Lines changed: 20 additions & 11 deletions

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ All notable changes to this project will be documented in this file.
99

1010
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
1111

12-
## [UNRELEASED]
12+
## [1.0.2 - UNRELEASED]
1313

1414
### Changed
1515

1616
- Switched to .NET 8.0 standard artifacts layout
1717
- Make project conforming to REUSE
18+
- Updated the project to .NET 10.0
1819

1920
## [1.0.1 - 2024-11-16]
2021

ConvertProjDepToProjRef.slnx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ SPDX-License-Identifier: MIT
1010
<File Path="create-signed-release.cmd" />
1111
<File Path="Directory.Build.props" />
1212
<File Path="Directory.Packages.props" />
13+
<File Path="global.json" />
1314
<File Path="nuget.config" />
1415
<File Path="README.md" />
1516
</Folder>

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ SPDX-License-Identifier: MIT
66
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
77
<PropertyGroup>
88
<!-- General -->
9-
<TargetFramework>net9.0</TargetFramework>
10-
<LangVersion>13.0</LangVersion>
9+
<TargetFramework>net10.0</TargetFramework>
10+
<LangVersion>14.0</LangVersion>
1111
<Features>strict</Features>
1212
<Nullable>enable</Nullable>
1313
<ImplicitUsings>enable</ImplicitUsings>

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ SPDX-License-Identifier: MIT
44
-->
55
<Project>
66
<ItemGroup>
7-
<PackageVersion Include="Microsoft.Build" Version="17.14.8" />
7+
<PackageVersion Include="Microsoft.Build" Version="18.0.2" />
88
</ItemGroup>
99
</Project>

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ files.
1515

1616
## Features
1717

18-
* .NET 9.0 App.
18+
* .NET 10.0 App.
1919

2020
## Build Instructions
2121

@@ -42,13 +42,13 @@ dotnet build -c Release
4242

4343
## Prebuild Executable
4444

45-
As convenience a prebuild executable for Windows x64 is available.
45+
As convenience a prebuilt executable for Windows x64 is available.
4646
Go to the [releases](https://github.com/vbaderks/ConvertProjDepToProjRef/releases) page and click on
4747
Assets at the bottom to show the files available in a release.
4848
Download the binary file ConvertProjDepToProjRef.exe.
4949

5050
> [!NOTE]
51-
> Microsoft Defender SmartScreen may show a warning about an unrecognised app when running the executable for the first time.
51+
> Microsoft Defender SmartScreen may show a warning about an unrecognized app when running the executable for the first time.
5252
Click on "More Info" + "Run anyway" to continue.
5353
The executable is signed, but Defender SmartScreen requires an Extended Validation (EV) code signing certificate, which is only available
54-
to commercial organisations, for direct full trust.
54+
to commercial organizations, for direct full trust.

REUSE.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# SPDX-FileCopyrightText: © 2024 Victor Derks
22
# SPDX-License-Identifier: MIT
33

4-
# This is a configuration file for the reuse lint tool. It allows specifing license info
4+
# This is a configuration file for the reuse lint tool. It allows specifying license info
55
# for files that cannot be extended with such info.
66

77
version = 1
88

99
[[annotations]]
1010
path = [
1111
"exclusion.dic",
12-
"ConvertProjDepToProjRef.sln",
12+
"global.json",
1313
"ConvertProjDepToProjRef.sln.DotSettings",
1414
]
1515
precedence = "aggregate"

global.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"sdk": {
3+
"version": "10.0.101",
4+
"rollForward": "latestFeature",
5+
"allowPrerelease": false
6+
}
7+
}

src/ConvertProjDepToProjRef.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SPDX-License-Identifier: MIT
88
<PropertyGroup>
99
<OutputType>Exe</OutputType>
1010
<PublishSingleFile>true</PublishSingleFile>
11-
<Version>1.0.1</Version>
11+
<Version>1.0.2</Version>
1212
</PropertyGroup>
1313

1414
<ItemGroup>

0 commit comments

Comments
 (0)