Skip to content

Commit 0bf3093

Browse files
committed
Added versioning to SimpleSudokuSolver.UI and updated version to 0.6.0.
1 parent 2a4e625 commit 0bf3093

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

SimpleSudokuSolver.UI/Properties/AssemblyInfo.cs

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@
88
// set of attributes. Change these attribute values to modify the information
99
// associated with an assembly.
1010
[assembly: AssemblyTitle("SimpleSudokuSolver.UI")]
11-
[assembly: AssemblyDescription("")]
12-
[assembly: AssemblyConfiguration("")]
13-
[assembly: AssemblyCompany("")]
11+
[assembly: AssemblyDescription("UI for the SimpleSudokuSolver library")]
12+
#if DEBUG
13+
[assembly: AssemblyConfiguration("Debug")]
14+
#else
15+
[assembly: AssemblyConfiguration("Release")]
16+
#endif
17+
[assembly: AssemblyCompany("Robert Kurtanjek")]
1418
[assembly: AssemblyProduct("SimpleSudokuSolver.UI")]
15-
[assembly: AssemblyCopyright("Copyright © 2019")]
19+
[assembly: AssemblyCopyright("")]
1620
[assembly: AssemblyTrademark("")]
1721
[assembly: AssemblyCulture("")]
1822

@@ -51,5 +55,6 @@
5155
// You can specify all the values or you can default the Build and Revision Numbers
5256
// by using the '*' as shown below:
5357
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.0.0.0")]
55-
[assembly: AssemblyFileVersion("1.0.0.0")]
58+
[assembly: AssemblyVersion("0.6.0.0")]
59+
[assembly: AssemblyFileVersion("0.6.0.0")]
60+
[assembly: AssemblyInformationalVersion("0.6.0.0")]

SimpleSudokuSolver/SimpleSudokuSolver.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>0.5.0</Version>
5+
<Version>0.6.0</Version>
66
<Authors>Robert Kurtanjek</Authors>
77
<PackageLicenseExpression>MIT</PackageLicenseExpression>
88
<PackageProjectUrl>https://github.com/kurtanr/SimpleSudokuSolver</PackageProjectUrl>

0 commit comments

Comments
 (0)