Skip to content

Commit

Permalink
Eliminate VersionInfo for updating assembly version easier on build s…
Browse files Browse the repository at this point in the history
…erver
  • Loading branch information
gasparnagy committed May 23, 2012
1 parent 626c0ca commit cd4d6b0
Show file tree
Hide file tree
Showing 27 changed files with 35 additions and 45 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("04dec58a-9677-4f58-ae8b-4744bbffb9a9")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="Async\ISilverlightTestInstance.cs" />
<Compile Include="Async\ReflectionHelper.cs" />
<Compile Include="Async\SilverlightAsyncTestExecutor.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("c4fc352b-e6ef-4d4a-b02f-40bf2a683845")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,6 @@
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="..\Runtime.Silverlight3\PlatformSpecific\ScenarioContextExtensions.cs">
<Link>PlatformSpecific\ScenarioContextExtensions.cs</Link>
</Compile>
Expand Down
3 changes: 3 additions & 0 deletions Generator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("743e1609-8937-4775-9896-6e8757c6d98d")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

[assembly: InternalsVisibleTo("TechTalk.SpecFlow.GeneratorTests, PublicKey=00240000048000009400000006020000002400005253413100040000010001009BD35D42479A68A533445360CA3149C96BF112221527828DCCC15604830999FAD6391912EDBDF591531C4DE9C45E437A3F648A2A3722D04E5A02BECE96522C71060081A14E1E775DF4B6F84D6DB609E3A20D15956D3FEDBFD77B2A9B0D941ACABCBF7C26B87F5696FE4AADAACA69DCB84E7C733D5FF0E9ECEF46656D19BF52A2")]
3 changes: 0 additions & 3 deletions Generator/TechTalk.SpecFlow.Generator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@
<Compile Include="..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="BatchGenerator.cs" />
<Compile Include="Configuration\GeneratorInfo.cs" />
<Compile Include="Configuration\GeneratorConfiguration.cs" />
Expand Down
2 changes: 2 additions & 0 deletions IdeIntegration/IdeIntegration/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("cc8b7d62-50d3-4816-9c05-32ade055bd3e")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="Generator\FileBasedSpecFlowConfigurationReader.cs" />
<Compile Include="Generator\GeneratorServices.cs" />
<Compile Include="Generator\IdeSingleFileGenerator.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@
<Compile Include="MonoDevelopGeneratorServices.cs" />
<Compile Include="SingleFeatureFileGenerator.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="..\..\VersionInfo.cs">
<Link>VersionInfo.cs</Link>
</Compile>
<Compile Include="ThreadAsyncOperation.cs" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("0ACD56A4-7A81-11DF-93DF-699DDFD72085")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,6 @@
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="FileUtilities.cs" />
<Compile Include="SharpDevelop4GeneratorServices.cs" />
Expand Down
2 changes: 2 additions & 0 deletions IdeIntegration/Vs2008Integration/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,6 @@
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="..\Vs2010Integration\SingleFileGenerator\CodeGeneratorRegistrationAttribute.cs">
<Link>Common\CodeGeneratorRegistrationAttribute.cs</Link>
</Compile>
Expand Down
3 changes: 3 additions & 0 deletions IdeIntegration/Vs2010Integration/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
[assembly: AssemblyTitle("TechTalk.SpecFlow.Vs2010Integration")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,6 @@
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="AutoComplete\CompletionCommandFilter.cs" />
<Compile Include="AutoComplete\CustomCompletionSet.cs" />
<Compile Include="AutoComplete\GherkinCompletionCommandFilter.cs" />
Expand Down
2 changes: 2 additions & 0 deletions Parser/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("9d1b09a6-4601-44a2-9849-08f512ab832b")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
3 changes: 0 additions & 3 deletions Parser/TechTalk.SpecFlow.Parser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@
<Compile Include="..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="ErrorDetail.cs" />
<Compile Include="GherkinBlockKeyword.cs" />
<Compile Include="GherkinBuilder\BackgroundBuilder.cs" />
Expand Down
3 changes: 3 additions & 0 deletions Reporting/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("08de25e1-aa29-4d61-9441-23ed05ab1dce")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
3 changes: 0 additions & 3 deletions Reporting/TechTalk.SpecFlow.Reporting.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@
<Compile Include="..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="AssemblyServices.cs" />
<Compile Include="BindingCollector.cs" />
<Compile Include="MsTestExecutionReport\MsTestExecutionReportGenerator.cs" />
Expand Down
3 changes: 3 additions & 0 deletions Runtime/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("cba254bb-2476-4e96-9a9f-6db1a1b5eb62")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

[assembly: AllowPartiallyTrustedCallers]

[assembly: InternalsVisibleTo("TechTalk.SpecFlow.RuntimeTests, PublicKey=00240000048000009400000006020000002400005253413100040000010001009BD35D42479A68A533445360CA3149C96BF112221527828DCCC15604830999FAD6391912EDBDF591531C4DE9C45E437A3F648A2A3722D04E5A02BECE96522C71060081A14E1E775DF4B6F84D6DB609E3A20D15956D3FEDBFD77B2A9B0D941ACABCBF7C26B87F5696FE4AADAACA69DCB84E7C733D5FF0E9ECEF46656D19BF52A2")]
3 changes: 0 additions & 3 deletions Runtime/TechTalk.SpecFlow.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@
<Compile Include="..\lib\BoDi\BoDi.cs">
<Link>BoDi\BoDi.cs</Link>
</Compile>
<Compile Include="..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="Assist\EnumerableProjection.cs" />
<Compile Include="Assist\FormattingTableDiffExceptionBuilder.cs" />
<Compile Include="Assist\SafetyTableDiffExceptionBuilder.cs" />
Expand Down
3 changes: 3 additions & 0 deletions Tools/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("fff5bcba-c01a-4bd8-9945-f7771e4a7d6f")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

3 changes: 0 additions & 3 deletions Tools/TechTalk.SpecFlow.Tools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@
<Compile Include="..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="MsBuild\GeneratorTask.cs" />
<Compile Include="MsBuild\GeneratorTaskBase.cs" />
<Compile Include="MsBuild\MsBuildBatchGenerator.cs" />
Expand Down
3 changes: 3 additions & 0 deletions Utils/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("469a3cef-9c42-4dea-b65c-b4f3df734fc8")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

3 changes: 0 additions & 3 deletions Utils/TechTalk.SpecFlow.Utils.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@
<Compile Include="..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="CodeDomHelper.cs" />
<Compile Include="CodeDomProviderLanguage.cs" />
<Compile Include="FileSystemHelper.cs" />
Expand Down
6 changes: 0 additions & 6 deletions VersionInfo.cs

This file was deleted.

0 comments on commit cd4d6b0

Please sign in to comment.