Skip to content

Commit

Permalink
Update AssemblyInfo.cs in both examples to include correct version an…
Browse files Browse the repository at this point in the history
…d consistent attributes
  • Loading branch information
amaitland committed Sep 29, 2014
1 parent 18153a2 commit 32393d9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
5 changes: 0 additions & 5 deletions CefSharp.WinForms.Example/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("CefSharp.WinForms.Example")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyCompany(AssemblyInfo.AssemblyCompany)]
[assembly: AssemblyProduct(AssemblyInfo.AssemblyProduct)]
[assembly: AssemblyCopyright(AssemblyInfo.AssemblyCopyright)]
Expand Down
17 changes: 10 additions & 7 deletions CefSharp.Wpf.Example/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.InteropServices;
using CefSharp;

[assembly: AssemblyTitle("CefSharp.Wpf.Example")]
[assembly: AssemblyCompany("The CefSharp Authors")]
[assembly: AssemblyProduct("CefSharp")]
[assembly: AssemblyCopyright("Copyright © The CefSharp Authors 2010-2014")]

[assembly: AssemblyVersion("3.29.0.0")]
[assembly: ComVisible(false)]
[assembly: AssemblyCompany(AssemblyInfo.AssemblyCompany)]
[assembly: AssemblyProduct(AssemblyInfo.AssemblyProduct)]
[assembly: AssemblyCopyright(AssemblyInfo.AssemblyCopyright)]
[assembly: ComVisible(AssemblyInfo.ComVisible)]
[assembly: AssemblyVersion(AssemblyInfo.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyInfo.AssemblyFileVersion)]
[assembly: CLSCompliant(AssemblyInfo.ClsCompliant)]

0 comments on commit 32393d9

Please sign in to comment.