Skip to content

Commit

Permalink
Added NuGet crap
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueRaja committed Aug 31, 2015
1 parent 3c529ba commit 31b9069
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
*.user
*.suo
/packages/
/Priority Queue/*.nupkg
25 changes: 17 additions & 8 deletions Priority Queue VS 2012 Solution.sln
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Priority Queue", "Priority Queue\Priority Queue.csproj", "{1531C1EA-BD53-41D1-A34B-CFCDF79D2651}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Priority Queue Tests", "Priority Queue Tests\Priority Queue Tests.csproj", "{CD080A54-9580-45C9-B5BB-479A0A38B70E}"
Expand All @@ -10,21 +12,28 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
Release 2.0|Any CPU = Release 2.0|Any CPU
Release 4.5|Any CPU = Release 4.5|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1531C1EA-BD53-41D1-A34B-CFCDF79D2651}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1531C1EA-BD53-41D1-A34B-CFCDF79D2651}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1531C1EA-BD53-41D1-A34B-CFCDF79D2651}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1531C1EA-BD53-41D1-A34B-CFCDF79D2651}.Release|Any CPU.Build.0 = Release|Any CPU
{1531C1EA-BD53-41D1-A34B-CFCDF79D2651}.Release 2.0|Any CPU.ActiveCfg = Release 2.0|Any CPU
{1531C1EA-BD53-41D1-A34B-CFCDF79D2651}.Release 2.0|Any CPU.Build.0 = Release 2.0|Any CPU
{1531C1EA-BD53-41D1-A34B-CFCDF79D2651}.Release 4.5|Any CPU.ActiveCfg = Release 4.5|Any CPU
{1531C1EA-BD53-41D1-A34B-CFCDF79D2651}.Release 4.5|Any CPU.Build.0 = Release 4.5|Any CPU
{CD080A54-9580-45C9-B5BB-479A0A38B70E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CD080A54-9580-45C9-B5BB-479A0A38B70E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CD080A54-9580-45C9-B5BB-479A0A38B70E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CD080A54-9580-45C9-B5BB-479A0A38B70E}.Release|Any CPU.Build.0 = Release|Any CPU
{CD080A54-9580-45C9-B5BB-479A0A38B70E}.Release 2.0|Any CPU.ActiveCfg = Release|Any CPU
{CD080A54-9580-45C9-B5BB-479A0A38B70E}.Release 2.0|Any CPU.Build.0 = Release|Any CPU
{CD080A54-9580-45C9-B5BB-479A0A38B70E}.Release 4.5|Any CPU.ActiveCfg = Release|Any CPU
{CD080A54-9580-45C9-B5BB-479A0A38B70E}.Release 4.5|Any CPU.Build.0 = Release|Any CPU
{6C3B95A9-651F-4CC4-8D5A-0156209A22AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6C3B95A9-651F-4CC4-8D5A-0156209A22AF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6C3B95A9-651F-4CC4-8D5A-0156209A22AF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6C3B95A9-651F-4CC4-8D5A-0156209A22AF}.Release|Any CPU.Build.0 = Release|Any CPU
{6C3B95A9-651F-4CC4-8D5A-0156209A22AF}.Release 2.0|Any CPU.ActiveCfg = Release|Any CPU
{6C3B95A9-651F-4CC4-8D5A-0156209A22AF}.Release 2.0|Any CPU.Build.0 = Release|Any CPU
{6C3B95A9-651F-4CC4-8D5A-0156209A22AF}.Release 4.5|Any CPU.ActiveCfg = Release|Any CPU
{6C3B95A9-651F-4CC4-8D5A-0156209A22AF}.Release 4.5|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
20 changes: 20 additions & 0 deletions Priority Queue/Priority Queue.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,26 @@
<CustomConstants Condition=" '$(TargetFrameworkVersion)' == 'v4.5' ">NET_VERSION_4_5</CustomConstants>
<DefineConstants>$(DefineConstants);$(CustomConstants)</DefineConstants>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE;NET_VERSION_4_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<OutputPath>bin\Release\net45\</OutputPath>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release 2.0|AnyCPU'">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<OutputPath>bin\Release\net20\</OutputPath>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down
23 changes: 23 additions & 0 deletions Priority Queue/Priority Queue.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>OptimizedPriorityQueue</id>
<version>$version$</version>
<title>$title$</title>
<authors>BlueRaja</authors>
<owners>BlueRaja</owners>
<licenseUrl>https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp/blob/master/LICENSE.txt</licenseUrl>
<projectUrl>https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes>Initial publishing onto NuGet</releaseNotes>
<copyright>Copyright 2015</copyright>
<tags>C# priority-queue pathfinding optimized</tags>
</metadata>
<files>
<file src="bin\Release\net20\Priority Queue.dll" target="lib\net20\Priority Queue.dll" />
<file src="bin\Release\net20\Priority Queue.pdb" target="lib\net20\Priority Queue.pdb" />
<file src="bin\Release\net45\Priority Queue.dll" target="lib\net45\Priority Queue.dll" />
<file src="bin\Release\net45\Priority Queue.pdb" target="lib\net45\Priority Queue.pdb" />
</files>
</package>
4 changes: 2 additions & 2 deletions Priority Queue/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
// 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("Priority Queue")]
[assembly: AssemblyTitle("Highly Optimized Priority Queue")]
[assembly: AssemblyDescription("A highly optimized Priority Queue for path-finding and related applications")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Priority Queue")]
[assembly: AssemblyProduct("Highly Optimized Priority Queue")]
[assembly: AssemblyCopyright("Copyright © BlueRaja 2013")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
4 changes: 4 additions & 0 deletions Priority Queue/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NuGet.CommandLine" version="2.8.6" targetFramework="net45" developmentDependency="true"/>
</packages>

0 comments on commit 31b9069

Please sign in to comment.