Skip to content

Commit 8294201

Browse files
committed
- externalized version info
1 parent da172c0 commit 8294201

File tree

8 files changed

+18
-14
lines changed

8 files changed

+18
-14
lines changed

DynamicLinqPadPostgreSqlDriver.Shared/DynamicLinqPadPostgreSqlDriver.Shared.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@
5757
<Reference Include="System.Xml" />
5858
</ItemGroup>
5959
<ItemGroup>
60+
<Compile Include="..\VersionInfo.cs">
61+
<Link>VersionInfo.cs</Link>
62+
</Compile>
6063
<Compile Include="DriverOption.cs" />
6164
<Compile Include="Extensions\ConnectionInfoExtensions.cs" />
6265
<Compile Include="Extensions\XElementExtensions.cs" />

DynamicLinqPadPostgreSqlDriver.Shared/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,4 @@
88
[assembly: AssemblyCulture("")]
99

1010
[assembly: ComVisible(false)]
11-
[assembly: Guid("8d343a09-d0df-4c9e-b8fd-bdeb70cf7097")]
12-
13-
[assembly: AssemblyVersion("0.1.0.0")]
14-
[assembly: AssemblyFileVersion("0.1.0.0")]
11+
[assembly: Guid("8d343a09-d0df-4c9e-b8fd-bdeb70cf7097")]

DynamicLinqPadPostgreSqlDriver.Tests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
[assembly: ComVisible(false)]
1212
[assembly: Guid("e04b12bf-0d89-40db-8a9c-b5fa095a3f39")]
1313

14-
[assembly: AssemblyVersion("0.1.0.0")]
15-
[assembly: AssemblyFileVersion("0.1.0.0")]
14+
[assembly: AssemblyVersion("1.0.0.0")]
15+
[assembly: AssemblyFileVersion("1.0.0.0")]
1616

1717
// disable parallel execution of tests
1818
[assembly: CollectionBehavior(DisableTestParallelization = true)]

DynamicLinqPadPostgreSqlDriver.UI/DynamicLinqPadPostgreSqlDriver.UI.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@
6464
<Reference Include="PresentationFramework" />
6565
</ItemGroup>
6666
<ItemGroup>
67+
<Compile Include="..\VersionInfo.cs">
68+
<Link>VersionInfo.cs</Link>
69+
</Compile>
6770
<Compile Include="Helpers\DelegatingCommand.cs" />
6871
<Compile Include="Helpers\DialogCloser.cs" />
6972
<Compile Include="UIHelper.cs" />

DynamicLinqPadPostgreSqlDriver.UI/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,4 @@
2727
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
2828
//(used if a resource is not found in the page,
2929
// app, or any theme specific resource dictionaries)
30-
)]
31-
32-
[assembly: AssemblyVersion("0.1.0.0")]
33-
[assembly: AssemblyFileVersion("0.1.0.0")]
30+
)]

DynamicLinqPadPostgreSqlDriver/DynamicLinqPadPostgreSqlDriver.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@
6464
<Reference Include="System.Xml" />
6565
</ItemGroup>
6666
<ItemGroup>
67+
<Compile Include="..\VersionInfo.cs">
68+
<Link>VersionInfo.cs</Link>
69+
</Compile>
6770
<Compile Include="Extensions\IConnectionInfoExtensions.cs" />
6871
<Compile Include="Extensions\IDbConnectionExtensions.cs" />
6972
<Compile Include="Extensions\StringExtensions.cs" />

DynamicLinqPadPostgreSqlDriver/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,4 @@
88
[assembly: AssemblyCulture("")]
99

1010
[assembly: ComVisible(false)]
11-
[assembly: Guid("824f300b-f0f9-4994-9097-b1b2270be12f")]
12-
13-
[assembly: AssemblyVersion("0.1.0.0")]
14-
[assembly: AssemblyFileVersion("0.1.0.0")]
11+
[assembly: Guid("824f300b-f0f9-4994-9097-b1b2270be12f")]

VersionInfo.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
using System.Reflection;
2+
3+
[assembly: AssemblyVersion("0.1.1.0")]
4+
[assembly: AssemblyFileVersion("0.1.1.0")]

0 commit comments

Comments
 (0)