Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanLarsson committed Dec 3, 2015
1 parent 8748d77 commit c24b551
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 deletions.
6 changes: 5 additions & 1 deletion Gu.Units.Generator/Templates/Readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Cleaning up here might be required:
The T4 is really buggy but here goes:
1) Build, use GeneratorOnly if the real projects does not build due to previous failure.
2) Build > Transform All Templates.
3) This is the happy path. I often have to restart VS, reboot reinstall etc. Standard Windows procedures, to get it to generate.

Cleaning up here might be required:
%LOCALAPPDATA%\Microsoft\VisualStudio\14.0\ProjectAssemblies\
%LOCALAPPDATA%\assembly\dl3
%TEMP%
1 change: 1 addition & 0 deletions Gu.Units.Json/Gu.Units.Json.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\Gu.Units.Json.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down
13 changes: 8 additions & 5 deletions Gu.Units.Json/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
using System.Reflection;
using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Gu.Units.Json")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("JsonConverters for Gu.Units")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCompany("Johan Larsson")]
[assembly: AssemblyProduct("Gu.Units.Json")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
Expand All @@ -32,5 +33,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.6.0.0")]
[assembly: AssemblyFileVersion("1.6.0.0")]
[assembly: NeutralResourcesLanguage("en")]

12 changes: 7 additions & 5 deletions Gu.Units.Wpf/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows.Markup;
Expand All @@ -9,9 +10,9 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Gu.Units.Wpf")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("IValueConverters for Gu.Units as MarkupExtensions")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCompany("Johan Larsson")]
[assembly: AssemblyProduct("Gu.Units.Wpf")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
Expand All @@ -35,12 +36,13 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("0.6.0.0")]
[assembly: AssemblyFileVersion("0.6.0.0")]
[assembly:InternalsVisibleTo("Gu.Units.Wpf.Tests", AllInternalsVisible = true)]

[assembly: XmlnsDefinition("http://Gu.com/Units", clrNamespace: "Gu.Units", AssemblyName = "Gu.Units")]
[assembly: XmlnsDefinition("http://Gu.com/Units", clrNamespace: "Gu.Units.Wpf", AssemblyName = "Gu.Units.Wpf")]
[assembly: XmlnsPrefix("http://Gu.com/Units", "units")]
[assembly: NeutralResourcesLanguage("en")]

namespace Gu.Units {} // testing hacking it like this
4 changes: 2 additions & 2 deletions Gu.Units/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.5.0.0")]
[assembly: AssemblyFileVersion("0.5.0.0")]
[assembly: AssemblyVersion("0.6.0.0")]
[assembly: AssemblyFileVersion("0.6.0.0")]
[assembly: NeutralResourcesLanguage("en")]
[assembly: InternalsVisibleTo("Gu.Units.Tests")]
[assembly: InternalsVisibleTo("Gu.Units.Wpf")]
Expand Down

0 comments on commit c24b551

Please sign in to comment.