@@ -49,7 +49,7 @@ public void VerifyIgnoreNonAssemblyInfoFile()
49
49
}
50
50
51
51
[ Test ]
52
- public void VerifyAttributeFoundCSharp ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" , "System.Reflection.AssemblyVersion" ) ] string attribute )
52
+ public void VerifyAttributeFoundCSharp ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" , "System.Reflection.AssemblyVersion" ) ] string attribute )
53
53
{
54
54
using ( var writer = File . CreateText ( Path . Combine ( projectDirectory , "AssemblyInfo.cs" ) ) )
55
55
{
@@ -66,7 +66,7 @@ public void VerifyAttributeFoundCSharp([Values("AssemblyVersion", "AssemblyFileV
66
66
}
67
67
68
68
[ Test ]
69
- public void VerifyUnformattedAttributeFoundCSharp ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" , "System . Reflection . AssemblyVersion" ) ] string attribute )
69
+ public void VerifyUnformattedAttributeFoundCSharp ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" , "System . Reflection . AssemblyVersion" ) ] string attribute )
70
70
{
71
71
using ( var writer = File . CreateText ( Path . Combine ( projectDirectory , "AssemblyInfo.cs" ) ) )
72
72
{
@@ -84,7 +84,7 @@ public void VerifyUnformattedAttributeFoundCSharp([Values("AssemblyVersion", "As
84
84
}
85
85
86
86
[ Test ]
87
- public void VerifyCommentWorksCSharp ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
87
+ public void VerifyCommentWorksCSharp ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
88
88
{
89
89
using ( var writer = File . CreateText ( Path . Combine ( projectDirectory , "AssemblyInfo.cs" ) ) )
90
90
{
@@ -100,7 +100,7 @@ public void VerifyCommentWorksCSharp([Values("AssemblyVersion", "AssemblyFileVer
100
100
}
101
101
102
102
[ Test ]
103
- public void VerifyCommentWithNoNewLineAtEndWorksCSharp ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
103
+ public void VerifyCommentWithNoNewLineAtEndWorksCSharp ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
104
104
{
105
105
using ( var writer = File . CreateText ( Path . Combine ( projectDirectory , "AssemblyInfo.cs" ) ) )
106
106
{
@@ -115,7 +115,7 @@ public void VerifyCommentWithNoNewLineAtEndWorksCSharp([Values("AssemblyVersion"
115
115
}
116
116
117
117
[ Test ]
118
- public void VerifyStringWorksCSharp ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
118
+ public void VerifyStringWorksCSharp ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
119
119
{
120
120
using ( var writer = File . CreateText ( Path . Combine ( projectDirectory , "AssemblyInfo.cs" ) ) )
121
121
{
@@ -134,7 +134,7 @@ public class Temp
134
134
}
135
135
136
136
[ Test ]
137
- public void VerifyIdentifierWorksCSharp ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
137
+ public void VerifyIdentifierWorksCSharp ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
138
138
{
139
139
using ( var writer = File . CreateText ( Path . Combine ( projectDirectory , "AssemblyInfo.cs" ) ) )
140
140
{
@@ -152,7 +152,7 @@ public class {0}
152
152
}
153
153
154
154
[ Test ]
155
- public void VerifyAttributeFoundVisualBasic ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" , "System.Reflection.AssemblyVersion" ) ] string attribute )
155
+ public void VerifyAttributeFoundVisualBasic ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" , "System.Reflection.AssemblyVersion" ) ] string attribute )
156
156
{
157
157
using ( var writer = File . CreateText ( Path . Combine ( projectDirectory , "AssemblyInfo.vb" ) ) )
158
158
{
@@ -169,7 +169,7 @@ Imports System.Reflection
169
169
}
170
170
171
171
[ Test ]
172
- public void VerifyUnformattedAttributeFoundVisualBasic ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" , "System . Reflection . AssemblyVersion" ) ] string attribute )
172
+ public void VerifyUnformattedAttributeFoundVisualBasic ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" , "System . Reflection . AssemblyVersion" ) ] string attribute )
173
173
{
174
174
using ( var writer = File . CreateText ( Path . Combine ( projectDirectory , "AssemblyInfo.vb" ) ) )
175
175
{
@@ -187,7 +187,7 @@ Imports System.Reflection
187
187
}
188
188
189
189
[ Test ]
190
- public void VerifyCommentWorksVisualBasic ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
190
+ public void VerifyCommentWorksVisualBasic ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
191
191
{
192
192
using ( var writer = File . CreateText ( Path . Combine ( projectDirectory , "AssemblyInfo.vb" ) ) )
193
193
{
@@ -203,7 +203,7 @@ Imports System.Reflection
203
203
}
204
204
205
205
[ Test ]
206
- public void VerifyCommentWithNoNewLineAtEndWorksVisualBasic ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
206
+ public void VerifyCommentWithNoNewLineAtEndWorksVisualBasic ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
207
207
{
208
208
using ( var writer = File . CreateText ( Path . Combine ( projectDirectory , "AssemblyInfo.vb" ) ) )
209
209
{
@@ -218,7 +218,7 @@ Imports System.Reflection
218
218
}
219
219
220
220
[ Test ]
221
- public void VerifyStringWorksVisualBasic ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
221
+ public void VerifyStringWorksVisualBasic ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
222
222
{
223
223
using ( var writer = File . CreateText ( Path . Combine ( projectDirectory , "AssemblyInfo.vb" ) ) )
224
224
{
@@ -236,7 +236,7 @@ End Class
236
236
}
237
237
238
238
[ Test ]
239
- public void VerifyIdentifierWorksVisualBasic ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
239
+ public void VerifyIdentifierWorksVisualBasic ( [ Values ( "AssemblyVersion" , "AssemblyFileVersion" , "AssemblyInformationalVersion" ) ] string attribute )
240
240
{
241
241
using ( var writer = File . CreateText ( Path . Combine ( projectDirectory , "AssemblyInfo.vb" ) ) )
242
242
{
0 commit comments