Skip to content

Commit

Permalink
Merge pull request #30 from nunit/release/3.8
Browse files Browse the repository at this point in the history
Prepare for 3.8 release
  • Loading branch information
ChrisMaddock authored Aug 11, 2018
2 parents 089a514 + 0e97870 commit 708d646
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
VS Project Loader Extension 3.8 - August 11, 2018

Miscellaneous bug fixes.

Issues Resolved

* 22 Fixes returned path when it contains $(Configuration) segment
* 24 Fixes problem with projects containing duplicated sections
* 27 NUnit console run fails on asp.net core project file

VS Project Loader Extension 3.7 - November 18, 2017

Added support for new .csproj file format, and resolved issue with missing
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017 Charlie Poole
Copyright (c) 2018 Charlie Poole

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 2 additions & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var AUTHORS = new [] { "Charlie Poole" };
var OWNERS = new [] { "Charlie Poole" };
var DESCRIPTION = "This extension allows NUnit to recognize and load solutions and projects in Visual Studio format. It supports files of type .sln, .csproj, .vbproj, .vjsproj, .vcproj and .fsproj.";
var SUMMARY = "NUnit Engine extension for loading Visual Studio formatted projects.";
var COPYRIGHT = "Copyright (c) 2017 Charlie Poole";
var COPYRIGHT = "Copyright (c) 2018 Charlie Poole";
var RELEASE_NOTES = new [] { "See https://raw.githubusercontent.com/nunit/vs-project-loader/master/CHANGES.txt" };
var TAGS = new [] { "nunit", "test", "testing", "tdd", "runner" };

Expand Down Expand Up @@ -276,6 +276,7 @@ Task("Rebuild")

Task("Package")
.IsDependentOn("Build")
.IsDependentOn("Test")
.IsDependentOn("RePackage");

Task("RePackage")
Expand Down
2 changes: 1 addition & 1 deletion src/extension/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("vs-project-loader")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
2 changes: 1 addition & 1 deletion src/tests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("tests")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down

0 comments on commit 708d646

Please sign in to comment.