Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 8.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions ModernRonin.ProjectRenamer/ModernRonin.ProjectRenamer.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/ModernRonin/ProjectRenamer</PackageProjectUrl>
<RepositoryUrl>https://github.com/ModernRonin/ProjectRenamer</RepositoryUrl>
Expand All @@ -23,4 +23,4 @@
<PackageReference Include="Sln" Version="0.3.0" />
</ItemGroup>
<Import Project="release.history" />
</Project>
</Project>
6 changes: 4 additions & 2 deletions ModernRonin.ProjectRenamer/release.history
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Version>2.2.1</Version>
<Version>2.3.0</Version>
<PackageReleaseNotes>
2.3.0:
* support .NET8
2.2.1:
* bugfix: all Import Project directives with relative paths will be correctly adjusted now
2.2.0:
Expand Down Expand Up @@ -36,4 +38,4 @@ initial release"</PackageReleaseNotes>
<!-- ref https://blogs.msdn.microsoft.com/msbuild/2005/09/26/how-to-ensure-changes-to-a-custom-target-file-prompt-a-rebuild/ -->
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>
</Project>
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ This tool takes care of this for you, provided your use-case follows a set of fa
* you use **git** as a repository and have `git`(the executable) on your PATH
* your `csproj` files have the same name as the folder in which they reside together with accompanying source code
* you don't have more than one solution file (`.sln`) in one directory
* you have **dotnetcore 3.1** or above (**note: as we are approaching the release of net7, I will soon upgrade the tool to net6)
* your solution does not contain nested solution folders - the tool currently has an issue with that and will fail; until I find the time to fix that, the
workaround is simply to move the nested solution folder to top-level via VS, run the tool, and then move the solution folder back;seeing as this is two
simple drag-and-drops that only change the solution file, I hope this is acceptable.
Expand All @@ -37,6 +36,8 @@ dotnet tool update --global ModernRonin.ProjectRenamer
When I publish a new version, I always post at [my blog](https://modernronin.github.io/) under the [renameproject tag](https://modernronin.github.io/tags/renameproject/), aside from updating this readme here.

### Release History
2.3.0: support .NET8

2.2.1:
* bugfix: all Import Project directives with relative paths will be correctly adjusted now

Expand Down