Skip to content

Commit

Permalink
I have added a nuspec file and am working on getting this project int…
Browse files Browse the repository at this point in the history
…o NuGet. I have not yet tested. andyburke#25
  • Loading branch information
ddaws committed Dec 6, 2014
1 parent 01bfce3 commit 0d1ca82
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
bin
.DS_Store
obj
*.pidb
*.nupkg
Binary file removed HTTP.pidb
Binary file not shown.
13 changes: 8 additions & 5 deletions HTTP.csproj → UnityHTTP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{8E94F9A4-3E1E-42F4-86E8-58270D44A4D8}</ProjectGuid>
<OutputType>Library</OutputType>
Expand Down Expand Up @@ -31,12 +31,12 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Ionic.Zlib">
<HintPath>libs\Ionic.Zlib.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>..\..\..\..\..\Applications\Unity\Unity.app\Contents\Frameworks\Managed\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="Ionic.Zlib">
<HintPath>lib\Ionic.Zlib.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
Expand All @@ -45,10 +45,13 @@
<Compile Include="src\Request.cs" />
<Compile Include="src\Response.cs" />
<Compile Include="src\ResponseCallbackDispatcher.cs" />
<Compile Include="libs\JSON.cs" />
<Compile Include="lib\JSON.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="src\" />
</ItemGroup>
<ItemGroup>
<None Include="UnityHTTP.nuspec" />
</ItemGroup>
</Project>
29 changes: 29 additions & 0 deletions UnityHTTP.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<package >
<metadata>
<id>1</id>
<version>1.0.0</version>
<title>UnityHTTP</title>
<authors>Andy Burke, Dawson Reid</authors>
<owners>Andy Burke</owners>
<licenseUrl>https://github.com/andyburke/UnityHTTP/blob/master/LICENSE.md</licenseUrl>
<projectUrl>https://github.com/andyburke/UnityHTTP</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A TcpClient-based HTTP library for Unity.</description>
<releaseNotes>First push to NuGet</releaseNotes>
<copyright>Copyright 2014</copyright>
<tags>Unity HTTP Web Game</tags>

<references>
<group>
<reference file="Ionic.Zlib.dll" />
</group>
</references>
</metadata>

<files>
<file src="src/*.cs" target="src" />
<file src="lib/*.cs" target="lib" />
<file src="lib/*.dll" target="lib" />
</files>
</package>
File renamed without changes.
File renamed without changes.

0 comments on commit 0d1ca82

Please sign in to comment.