Skip to content

Commit c170a82

Browse files
Update AssemblyInfo.cs on all projects
1 parent f4bde66 commit c170a82

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

sample/Ookii.Dialogs.Wpf.Sample/Properties/AssemblyInfo.cs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System.Reflection;
2-
using System.Resources;
3-
using System.Runtime.CompilerServices;
42
using System.Runtime.InteropServices;
53
using System.Windows;
64

@@ -9,7 +7,13 @@
97
// associated with an assembly.
108
[assembly: AssemblyTitle("Ookii.Dialogs.Wpf.Sample")]
119
[assembly: AssemblyDescription("")]
12-
[assembly: AssemblyConfiguration("")]
10+
11+
#if DEBUG
12+
[assembly: AssemblyConfiguration("Debug")]
13+
#else
14+
[assembly: AssemblyConfiguration("Release")]
15+
#endif
16+
1317
[assembly: AssemblyCompany("Ookii.org")]
1418
[assembly: AssemblyProduct("Ookii.Dialogs.Wpf")]
1519
[assembly: AssemblyCopyright("Copyright (c) Sven Groot (Ookii.org) 2009")]
@@ -55,3 +59,4 @@
5559
// [assembly: AssemblyVersion("1.0.*")]
5660
[assembly: AssemblyVersion("1.0.0.0")]
5761
[assembly: AssemblyFileVersion("1.0.0.0")]
62+
[assembly: AssemblyInformationalVersion("1.0.0")]

src/Ookii.Dialogs.Wpf/Properties/AssemblyInfo.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
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
65
// set of attributes. Change these attribute values to modify the information
76
// associated with an assembly.
87
[assembly: AssemblyTitle("Ookii.Dialogs.Wpf")]
98
[assembly: AssemblyDescription("")]
10-
[assembly: AssemblyConfiguration("")]
9+
10+
#if DEBUG
11+
[assembly: AssemblyConfiguration("Debug")]
12+
#else
13+
[assembly: AssemblyConfiguration("Release")]
14+
#endif
15+
1116
[assembly: AssemblyCompany("Ookii.org")]
1217
[assembly: AssemblyProduct("Ookii.Dialogs.Wpf")]
1318
[assembly: AssemblyCopyright("Copyright (c) Sven Groot (Ookii.org) 2009")]
@@ -36,3 +41,4 @@
3641
// [assembly: AssemblyVersion("1.0.*")]
3742
[assembly: AssemblyVersion("1.0.0.0")]
3843
[assembly: AssemblyFileVersion("1.0.0.0")]
44+
[assembly: AssemblyInformationalVersion("1.0.0")]

0 commit comments

Comments
 (0)