Skip to content

Commit

Permalink
Everything needed for a nuget package
Browse files Browse the repository at this point in the history
  • Loading branch information
Thieum committed Sep 4, 2013
1 parent e731cbd commit 9cc31eb
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
SimpleExpressionEvaluator.Tests/bin/
SimpleExpressionEvaluator.Tests/obj/
SimpleExpressionEvaluator/bin/
SimpleExpressionEvaluator/obj/
SimpleExpressionEvaluator/obj/
*.user
*.suo
*.nupkg
2 changes: 1 addition & 1 deletion SimpleExpressionEvaluator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("SimpleExpressionEvaluator")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("A c# library for parsing mathematical expressions with support for parentheses and variables.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("SimpleExpressionEvaluator")]
Expand Down
3 changes: 3 additions & 0 deletions SimpleExpressionEvaluator/SimpleExpressionEvaluator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@
<Compile Include="ExpressionEvaluator.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="SimpleExpressionEvaluator.nuspec" />
</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
17 changes: 17 additions & 0 deletions SimpleExpressionEvaluator/SimpleExpressionEvaluator.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>Math-Expression-Evaluator</id>
<version>$version$</version>
<title>Math Expression Evaluator</title>
<authors>Giorgi</authors>
<!--<licenseUrl>http://LICENSE_URL_HERE_OR_DELETE_THIS_LINE</licenseUrl>-->
<projectUrl>https://github.com/Giorgi/Math-Expression-Evaluator</projectUrl>
<!--<iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl>-->
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes>Initial package release</releaseNotes>
<copyright>Copyright 2013</copyright>
<tags>Math Expression Evaluator</tags>
</metadata>
</package>

0 comments on commit 9cc31eb

Please sign in to comment.