Skip to content

Commit eaf13cc

Browse files
committed
Added AssemblyVersion attribute into all the projects
1 parent c561e61 commit eaf13cc

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

ConventionTests.sln

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{AF9054EE-FE89-47A4-9156-BE54A837F2F7}"
77
ProjectSection(SolutionItems) = preProject
88
appveyor.yml = appveyor.yml
9-
Build.cmd = Build.cmd
10-
ConventionTests.proj = ConventionTests.proj
119
README.md = README.md
1210
EndProjectSection
1311
EndProject

Samples/SampleApp.Tests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
@@ -14,6 +13,8 @@
1413
[assembly: AssemblyTrademark("")]
1514
[assembly: AssemblyCulture("")]
1615

16+
[assembly: AssemblyVersion("0.0.0.0")]
17+
1718
// Setting ComVisible to false makes the types in this assembly not visible
1819
// to COM components. If you need to access a type in this assembly from
1920
// COM, set the ComVisible attribute to true on that type.

Samples/SampleApp/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
@@ -14,6 +13,8 @@
1413
[assembly: AssemblyTrademark("")]
1514
[assembly: AssemblyCulture("")]
1615

16+
[assembly: AssemblyVersion("0.0.0.0")]
17+
1718
// Setting ComVisible to false makes the types in this assembly not visible
1819
// to COM components. If you need to access a type in this assembly from
1920
// COM, set the ComVisible attribute to true on that type.

TestAssembly/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
[assembly: AssemblyTrademark("")]
1414
[assembly: AssemblyCulture("")]
1515

16+
[assembly: AssemblyVersion("0.0.0.0")]
17+
1618
// Setting ComVisible to false makes the types in this assembly not visible
1719
// to COM components. If you need to access a type in this assembly from
1820
// COM, set the ComVisible attribute to true on that type.

TestStack.ConventionTests.Autofac/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
@@ -14,6 +13,8 @@
1413
[assembly: AssemblyTrademark("")]
1514
[assembly: AssemblyCulture("")]
1615

16+
[assembly: AssemblyVersion("0.0.0.0")]
17+
1718
// Setting ComVisible to false makes the types in this assembly not visible
1819
// to COM components. If you need to access a type in this assembly from
1920
// COM, set the ComVisible attribute to true on that type.

TestStack.ConventionTests.Tests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
using System.Reflection;
22
using System.Runtime.InteropServices;
3-
// General Information about an assembly is controlled through the following
4-
// set of attributes. Change these attribute values to modify the information
5-
// associated with an assembly.
63
using TestStack.ConventionTests;
74
using TestStack.ConventionTests.Reporting;
85

@@ -15,6 +12,8 @@
1512
[assembly: AssemblyTrademark("")]
1613
[assembly: AssemblyCulture("")]
1714

15+
[assembly: AssemblyVersion("0.0.0.0")]
16+
1817
// Setting ComVisible to false makes the types in this assembly not visible
1918
// to COM components. If you need to access a type in this assembly from
2019
// COM, set the ComVisible attribute to true on that type.

TestStack.ConventionTests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
[assembly: AssemblyTrademark("")]
1414
[assembly: AssemblyCulture("")]
1515

16+
[assembly: AssemblyVersion("0.0.0.0")]
17+
1618
// Setting ComVisible to false makes the types in this assembly not visible
1719
// to COM components. If you need to access a type in this assembly from
1820
// COM, set the ComVisible attribute to true on that type.

0 commit comments

Comments
 (0)