This commit is contained in:
Charlie Poole 2019-10-19 20:55:19 -07:00
Родитель 4a808504b2
Коммит 903b328d21
7 изменённых файлов: 14 добавлений и 9 удалений

Просмотреть файл

@ -1,4 +1,4 @@
Copyright (c) 2017 Charlie Poole
Copyright (c) 2014-2019 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

Просмотреть файл

@ -20,9 +20,9 @@ var VERSION = "3.8.0";
var TITLE = "NUnit 3 - NUnit V2 Framework Driver Extension";
var AUTHORS = new [] { "Charlie Poole" };
var OWNERS = new [] { "Charlie Poole" };
var DESCRIPTION = "This extension allows NUnit to load and run tests compiled against earlier versions of the NUnit framework. Versions 2.0 through 2.6.4 are supported.";
var DESCRIPTION = "This extension allows NUnit to load and run tests compiled against earlier versions of the NUnit framework. Versions 2.0 through 2.7 are supported.";
var SUMMARY = "NUnit Engine extension allowing execution of tests using NUnit 2.x.";
var COPYRIGHT = "Copyright (c) 2017 Charlie Poole";
var COPYRIGHT = "Copyright (c) 2014-2019 Charlie Poole";
var RELEASE_NOTES = new [] { "See https://raw.githubusercontent.com/nunit/nunit-v2-framework-driver/master/CHANGES.txt" };
var TAGS = new [] { "nunit", "test", "testing", "tdd", "runner" };

Просмотреть файл

@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
# Visual Studio 15
VisualStudioVersion = 15.0.28307.852
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.v2.driver", "src\extension\nunit.v2.driver.csproj", "{379058E2-E834-4CC7-B5CD-AC8DFCF82AEA}"
EndProject
@ -13,6 +13,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
build.cmd = build.cmd
build.ps1 = build.ps1
build.sh = build.sh
CHANGES.txt = CHANGES.txt
LICENSE.txt = LICENSE.txt
nunit.v2.driver.nuspec = nunit.v2.driver.nuspec
README.md = README.md
EndProjectSection
@ -43,4 +45,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {E3CE9F5F-EF5F-48B1-B211-42FFCB09BC65}
EndGlobalSection
EndGlobal

Просмотреть файл

@ -1,5 +1,5 @@
// ***********************************************************************
// Copyright (c) 2014 Charlie Poole
// Copyright (c) 2014-2019 Charlie Poole
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the

Просмотреть файл

@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("nunit.v2.driver")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyCopyright("Copyright © 2014-2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Просмотреть файл

@ -1,5 +1,5 @@
// ***********************************************************************
// Copyright (c) 2015 Charlie Poole
// Copyright (c) 2015-2019 Charlie Poole
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the

Просмотреть файл

@ -1,5 +1,5 @@
// ***********************************************************************
// Copyright (c) 2014 Charlie Poole
// Copyright (c) 2014-2019 Charlie Poole
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the