Skip to content

Commit e56e995

Browse files
committed
Merge pull request andyburke#30 from MoreTorpedoes/master
Closes andyburke#29 and some work on andyburke#25
2 parents 6b66d40 + 70299a4 commit e56e995

File tree

7 files changed

+379
-5
lines changed

7 files changed

+379
-5
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44
bin
55
.DS_Store
66
obj
7+
*.pidb
8+
*.nupkg

HTTP.pidb

-9.13 KB
Binary file not shown.

LICENSE.md

Lines changed: 340 additions & 0 deletions
Large diffs are not rendered by default.

HTTP.csproj renamed to UnityHTTP.csproj

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProductVersion>9.0.21022</ProductVersion>
6+
<ProductVersion>8.0.30703</ProductVersion>
77
<SchemaVersion>2.0</SchemaVersion>
88
<ProjectGuid>{8E94F9A4-3E1E-42F4-86E8-58270D44A4D8}</ProjectGuid>
99
<OutputType>Library</OutputType>
@@ -31,12 +31,12 @@
3131
</PropertyGroup>
3232
<ItemGroup>
3333
<Reference Include="System" />
34-
<Reference Include="Ionic.Zlib">
35-
<HintPath>libs\Ionic.Zlib.dll</HintPath>
36-
</Reference>
3734
<Reference Include="UnityEngine">
3835
<HintPath>..\..\..\..\..\Applications\Unity\Unity.app\Contents\Frameworks\Managed\UnityEngine.dll</HintPath>
3936
</Reference>
37+
<Reference Include="Ionic.Zlib">
38+
<HintPath>lib\Ionic.Zlib.dll</HintPath>
39+
</Reference>
4040
</ItemGroup>
4141
<ItemGroup>
4242
<Compile Include="AssemblyInfo.cs" />
@@ -45,10 +45,13 @@
4545
<Compile Include="src\Request.cs" />
4646
<Compile Include="src\Response.cs" />
4747
<Compile Include="src\ResponseCallbackDispatcher.cs" />
48-
<Compile Include="libs\JSON.cs" />
48+
<Compile Include="lib\JSON.cs" />
4949
</ItemGroup>
5050
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
5151
<ItemGroup>
5252
<Folder Include="src\" />
5353
</ItemGroup>
54+
<ItemGroup>
55+
<None Include="UnityHTTP.nuspec" />
56+
</ItemGroup>
5457
</Project>

UnityHTTP.nuspec

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package >
3+
<metadata>
4+
<id>UnityHTTP</id>
5+
<version>1.0.0</version>
6+
<title>UnityHTTP</title>
7+
<authors>Andy Burke, Dawson Reid</authors>
8+
<owners>Andy Burke</owners>
9+
<licenseUrl>https://github.com/andyburke/UnityHTTP/blob/master/LICENSE.md</licenseUrl>
10+
<projectUrl>https://github.com/andyburke/UnityHTTP</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>A TcpClient-based HTTP library for Unity.</description>
13+
<releaseNotes>First push to NuGet</releaseNotes>
14+
<copyright>Copyright 2014</copyright>
15+
<tags>Unity HTTP Web Game</tags>
16+
17+
<references>
18+
<group>
19+
<reference file="Ionic.Zlib.dll" />
20+
</group>
21+
</references>
22+
</metadata>
23+
24+
<files>
25+
<file src="src/*.cs" target="src" />
26+
<file src="lib/*.cs" target="lib" />
27+
<file src="lib/*.dll" target="lib" />
28+
</files>
29+
</package>
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)