Skip to content

Commit

Permalink
Merge pull request #221 from nunit/issue-217
Browse files Browse the repository at this point in the history
Added missing nuget package info
  • Loading branch information
rprouse committed Jul 14, 2017
2 parents 403740b + e4e1966 commit b995864
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
//
// Common Information for the NUnit assemblies
//
[assembly: AssemblyCompany("NUnit Software")]
[assembly: AssemblyProduct("NUnit 3")]
[assembly: AssemblyCopyright("Copyright (c) 2017 Charlie Poole, Rob Prouse")]
[assembly: AssemblyTrademark("NUnit is a trademark of NUnit Software")]
[assembly: AssemblyCompany("NUnit Software")]
[assembly: AssemblyCopyright("Copyright (c) 2017 Charlie Poole, Rob Prouse")]

#if PORTABLE
[assembly: AssemblyMetadata("PCL", "True")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageId>nunit.engine.netstandard</PackageId>
<Title>NUnit .NET Standard Engine</Title>
<Authors>Charlie Poole, Rob Prouse</Authors>
<Owners>Charlie Poole, Rob Prouse</Owners>
<Description>Provides a common interface for loading, exploring and running NUnit tests in .NET Core and .NET Standard</Description>
<Copyright>Copyright (C) 2017 Charlie Poole, Rob Prouse</Copyright>
<Version>$(PackageVersion)</Version>
<PackageLicenseUrl>http://nunit.org/nuget/nunit3-license.txt</PackageLicenseUrl>
<PackageProjectUrl>http://nunit.org</PackageProjectUrl>
Expand Down Expand Up @@ -150,7 +156,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.DotNet.InternalAbstractions" Version="1.0.0" />
<PackageReference Include="Mono.Cecil" Version="0.10.0-beta4" />
<PackageReference Include="Mono.Cecil" Version="0.10.0-beta6" />
<PackageReference Include="System.ComponentModel.EventBasedAsync" Version="4.3.0" />
<PackageReference Include="System.ComponentModel.TypeConverter" Version="4.3.0" />
<PackageReference Include="System.Diagnostics.Process" Version="4.3.0" />
Expand Down
6 changes: 3 additions & 3 deletions src/NUnitEngine/nunit.engine/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// 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.
#if NETSTANDARD1_3
Expand All @@ -14,8 +14,8 @@
#endif
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

Expand Down

0 comments on commit b995864

Please sign in to comment.