Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ All notable changes to this project will be documented in this file.

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

## [UNRELEASED]
## [1.0.2 - UNRELEASED]

### Changed

- Switched to .NET 8.0 standard artifacts layout
- Make project conforming to REUSE
- Updated the project to .NET 10.0

## [1.0.1 - 2024-11-16]

Expand Down
1 change: 1 addition & 0 deletions ConvertProjDepToProjRef.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ SPDX-License-Identifier: MIT
<File Path="create-signed-release.cmd" />
<File Path="Directory.Build.props" />
<File Path="Directory.Packages.props" />
<File Path="global.json" />
<File Path="nuget.config" />
<File Path="README.md" />
</Folder>
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ SPDX-License-Identifier: MIT
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- General -->
<TargetFramework>net9.0</TargetFramework>
<LangVersion>13.0</LangVersion>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Features>strict</Features>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ SPDX-License-Identifier: MIT
-->
<Project>
<ItemGroup>
<PackageVersion Include="Microsoft.Build" Version="17.14.8" />
<PackageVersion Include="Microsoft.Build" Version="18.0.2" />
</ItemGroup>
</Project>
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ files.

## Features

* .NET 9.0 App.
* .NET 10.0 App.

## Build Instructions

Expand All @@ -42,13 +42,13 @@ dotnet build -c Release

## Prebuild Executable

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

> [!NOTE]
> Microsoft Defender SmartScreen may show a warning about an unrecognised app when running the executable for the first time.
> Microsoft Defender SmartScreen may show a warning about an unrecognized app when running the executable for the first time.
Click on "More Info" + "Run anyway" to continue.
The executable is signed, but Defender SmartScreen requires an Extended Validation (EV) code signing certificate, which is only available
to commercial organisations, for direct full trust.
to commercial organizations, for direct full trust.
4 changes: 2 additions & 2 deletions REUSE.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# SPDX-FileCopyrightText: © 2024 Victor Derks
# SPDX-License-Identifier: MIT

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

version = 1

[[annotations]]
path = [
"exclusion.dic",
"ConvertProjDepToProjRef.sln",
"global.json",
"ConvertProjDepToProjRef.sln.DotSettings",
]
precedence = "aggregate"
Expand Down
7 changes: 7 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"version": "10.0.101",
"rollForward": "latestFeature",
"allowPrerelease": false
}
}
2 changes: 1 addition & 1 deletion src/ConvertProjDepToProjRef.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SPDX-License-Identifier: MIT
<PropertyGroup>
<OutputType>Exe</OutputType>
<PublishSingleFile>true</PublishSingleFile>
<Version>1.0.1</Version>
<Version>1.0.2</Version>
</PropertyGroup>

<ItemGroup>
Expand Down