Skip to content

Commit

Permalink
Update project
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Sep 11, 2024
1 parent d66bddd commit 7fa8476
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Build/Build.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>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace></RootNamespace>
<NoWarn>CS0649;CS0169</NoWarn>
<NukeRootDirectory>.</NukeRootDirectory>
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.4.0] / 2024-09-11
### Updated
- Update to support target `net48` and `net8.0`.

## [1.3.1] / 2023-09-28
### Features
- Enable to work with `net5.0` or greater
Expand Down Expand Up @@ -228,6 +232,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Test with Console Output

[vNext]: ../../compare/1.0.0...HEAD
[1.4.0]: ../../compare/1.3.1...1.4.0
[1.3.1]: ../../compare/1.3.0...1.3.1
[1.3.0]: ../../compare/1.2.9...1.3.0
[1.2.9]: ../../compare/1.2.8...1.2.9
Expand Down
5 changes: 5 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.4.0-alpha</Version>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion ricaun.NUnit.Tests/ricaun.NUnit.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net45;net6.0</TargetFrameworks>
<TargetFrameworks>net45;net48;net6.0;net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
Expand Down
3 changes: 2 additions & 1 deletion ricaun.NUnit.sln
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution", "Solution", "{09BFC454-8566-456C-83F0-80E77F05BA14}"
ProjectSection(SolutionItems) = preProject
CHANGELOG.md = CHANGELOG.md
Directory.Build.props = Directory.Build.props
LICENSE = LICENSE
README.md = README.md
EndProjectSection
Expand All @@ -18,7 +19,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ricaun.NUnit.Tests", "ricau
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleTest.Tests", "SampleTest.Tests\SampleTest.Tests.csproj", "{A3F8A436-6412-4092-9807-7DF6CF7E176F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleTest", "SampleTest\SampleTest.csproj", "{C9C3CE2D-3D95-49A4-9733-152D38646759}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleTest", "SampleTest\SampleTest.csproj", "{C9C3CE2D-3D95-49A4-9733-152D38646759}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
1 change: 1 addition & 0 deletions ricaun.NUnit/TestEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ private static AssemblyName GetNUnitReference(Assembly assembly)
.FirstOrDefault(e => e.Name.Equals(NUNIT_ASSEMBLY));
}

[Obsolete]
private static Assembly ReflectionOnlyLoadFrom(string assemblyFile)
{
try
Expand Down
3 changes: 1 addition & 2 deletions ricaun.NUnit/ricaun.NUnit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0;net5.0</TargetFrameworks>
<TargetFrameworks>net45;net48;netstandard2.0;net5.0;net8.0</TargetFrameworks>
<NoWarn>$(NoWarn);NETSDK1138</NoWarn>
<OutputType>Library</OutputType>
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down Expand Up @@ -31,7 +31,6 @@

<PropertyGroup>
<PackageId>ricaun.NUnit</PackageId>
<Version>1.3.1</Version>
<ProjectGuid>{EBDE7FEE-0D1E-4034-9B44-4C5F4E24F52A}</ProjectGuid>
</PropertyGroup>

Expand Down

0 comments on commit 7fa8476

Please sign in to comment.