Skip to content

Commit

Permalink
Bumping the version to major version 1.0 - about time I think. And up…
Browse files Browse the repository at this point in the history
…dating descriptions and nuget spec.
  • Loading branch information
CameronWills committed Nov 30, 2019
1 parent 198a9c3 commit 594ab73
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 8 deletions.
6 changes: 3 additions & 3 deletions FatAntelope.CommandLine/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("FatAntelope.CommandLine")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// 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.2.3.0")]
[assembly: AssemblyFileVersion("0.2.3.0")]
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]
5 changes: 5 additions & 0 deletions FatAntelope/FatAntelope.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@
<Compile Include="XNode.cs" />
<Compile Include="XTree.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="license.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
6 changes: 5 additions & 1 deletion FatAntelope/FatAntelope.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@
<title>$title$</title>
<authors>Cameron Wills</authors>
<owners>Cameron Wills</owners>
<licenseUrl>https://raw.githubusercontent.com/CameronWills/FatAntelope/master/LICENSE.md</licenseUrl>
<license type="file">license.txt</license>
<projectUrl>https://github.com/CameronWills/FatAntelope</projectUrl>
<repository type="git" url="https://github.com/CameronWills/FatAntelope.git" branch="master" />
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<tags>xdt config transform xml diff compare diffgram tree comparison cheetah slowcheetah</tags>
</metadata>
<files>
<file src="license.txt" target="" />
</files>
</package>
8 changes: 4 additions & 4 deletions FatAntelope/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("FatAntelope")]
[assembly: AssemblyDescription("A tool for comparing two .config (xml) files and generating an XDT transform. Can also be used for unordered XML comparison, as an alternative to Microsoft's XML Diff tool. Extend BaseDiffWriter to create custom patches or diff grams.")]
[assembly: AssemblyDescription("A tool for comparing two .config files and generating an XDT transform (Microsoft XML Document Transform). Useful for creating transforms for existing production web.config or app.config files. Can also be used for unordered XML comparison, as an alternative to Microsoft's XML Diff tool.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("FatAntelope")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// 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.2.3.0")]
[assembly: AssemblyFileVersion("0.2.3.0")]
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]
36 changes: 36 additions & 0 deletions FatAntelope/license.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Copyright (c) 2015
Cameron Wills. All rights reserved.

Copyright (c) 2001 - 2005
Yuan Wang. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Redistributions in any form must be accompanied by information on
how to obtain complete source code for the X-Diff software and any
accompanying software that uses the X-Diff software. The source code
must either be included in the distribution or be available for no
more than the cost of distribution plus a nominal fee, and must be
freely redistributable under reasonable conditions. For an executable
file, complete source code means the source code for all modules it
contains. It does not include source code for modules or files that
typically accompany the major components of the operating system on
which the executable file runs.

THIS SOFTWARE IS PROVIDED BY YUAN WANG "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT,
ARE DISCLAIMED. IN NO EVENT SHALL YUAN WANG BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.

0 comments on commit 594ab73

Please sign in to comment.