This commit is contained in:
Rob Prouse 2023-01-08 12:11:24 -05:00
Родитель c6acba6709
Коммит 5964174eff
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: DA234FE8BF92BF0C
4 изменённых файлов: 20 добавлений и 14 удалений

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

@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
@ -9,7 +9,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("NUnit Project")]
[assembly: AssemblyProduct("TestGenerator.Extensions.NUnit")]
[assembly: AssemblyCopyright("Copyright © Terje Sandstrom 2015-2019")]
[assembly: AssemblyCopyright("Copyright © Terje Sandstrom 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.0.0")]
[assembly: AssemblyFileVersion("2.3.0.0")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]

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

@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
@ -9,7 +9,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("NUnit Project")]
[assembly: AssemblyProduct("TestGenerator.Extensions.NUnit")]
[assembly: AssemblyCopyright("Copyright © Terje Sandstrom 2015-2019")]
[assembly: AssemblyCopyright("Copyright © Terje Sandstrom 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.0.0")]
[assembly: AssemblyFileVersion("2.3.0.0")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]

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

@ -1,15 +1,15 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Test Generator NUnit extension")]
[assembly: AssemblyDescription("Test Generator, NUnit extensions for Visual Studio 2015.\nCreates Unit tests and Intellitests with both NUnit 2.6.4 and NUnit 3 frameworks.")]
[assembly: AssemblyTitle("NUnit Test Generator VS2022")]
[assembly: AssemblyDescription("Test Generator, NUnit extensions for Visual Studio 2022.\nCreates Unit tests and Intellitests with NUnit 3.x frameworks.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("NUnit.org")]
[assembly: AssemblyProduct("Test Generator NUnit extension")]
[assembly: AssemblyCopyright("(c) 2015 NUnit, Charlie Pool")]
[assembly: AssemblyCopyright("(c) 2022 NUnit, Terje Sandstrom")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@ -28,5 +28,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]

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

@ -31,6 +31,12 @@
<CopyBuildOutputToOutputDirectory>false</CopyBuildOutputToOutputDirectory>
<CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
</PropertyGroup>
<PropertyGroup>
<!-- Common debugging support -->
<StartAction>Program</StartAction>
<StartProgram>$(DevEnvDir)\devenv.exe</StartProgram>
<StartArguments>/rootsuffix Exp</StartArguments>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>