From ad26c66ef7f17387b87c2c43145415f99bf4a325 Mon Sep 17 00:00:00 2001 From: Taylor Shuler Date: Wed, 19 Jun 2013 12:04:41 -0700 Subject: [PATCH] Pushed project version --- CHANGELOG.txt | 8 ++++++-- Cubico.Tests/Cubico.Tests.csproj | 1 + Cubico.Tests/Properties/AssemblyInfo.cs | 26 +++++++++++++++++++++++++ 3 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 Cubico.Tests/Properties/AssemblyInfo.cs diff --git a/CHANGELOG.txt b/CHANGELOG.txt index da9046d..4d853b2 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,8 @@ -README +CHANGELOG + +Version 0.2 +- Added number string parser +- Converted tests to run against NUnit Version 0.1 -A .Net based Unit Conversion API that is web service friendly and comprehensive, yet easy to program against. \ No newline at end of file +- Initial project \ No newline at end of file diff --git a/Cubico.Tests/Cubico.Tests.csproj b/Cubico.Tests/Cubico.Tests.csproj index fb8b468..d5acfee 100644 --- a/Cubico.Tests/Cubico.Tests.csproj +++ b/Cubico.Tests/Cubico.Tests.csproj @@ -40,6 +40,7 @@ + diff --git a/Cubico.Tests/Properties/AssemblyInfo.cs b/Cubico.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..5d21599 --- /dev/null +++ b/Cubico.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,26 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +// Information about this assembly is defined by the following attributes. +// Change them to the values specific to your project. + +[assembly: AssemblyTitle("Cubico.Tests")] +[assembly: AssemblyDescription("Tests for Cubico")] +//[assembly: AssemblyConfiguration("")] +//[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Cubico.Tests")] +//[assembly: AssemblyCopyright("")] +//[assembly: AssemblyTrademark("")] +//[assembly: AssemblyCulture("")] + +// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". +// The form "{Major}.{Minor}.*" will automatically update the build and revision, +// and "{Major}.{Minor}.{Build}.*" will update just the revision. + +//[assembly: AssemblyVersion("1.0.*")] + +// The following attributes are used to specify the signing key for the assembly, +// if desired. See the Mono documentation for more information about signing. + +//[assembly: AssemblyDelaySign(false)] +//[assembly: AssemblyKeyFile("")] \ No newline at end of file