Skip to content

Commit da5bf76

Browse files
committed
Initial commit
0 parents  commit da5bf76

4 files changed

Lines changed: 61 additions & 0 deletions

File tree

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[Bb]in
2+
[Oo]bj
3+
[Tt]est[Rr]esults
4+
*.suo
5+
*.user
6+
*.[Cc]ache
7+
*[Rr]esharper*
8+
packages
9+
NuGet.exe
10+
_[Ss]cripts
11+
*.exe
12+
*.dll
13+
*.nupkg
14+
*.dot[Cc]over
15+
*.vsp
16+
*.psess
17+
*.orig

License.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright (c) Arjen Post
2+
3+
Licensed under the Apache License, Version 2.0 (the "License"); you
4+
may not use this file except in compliance with the License. You may
5+
obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12+
implied. See the License for the specific language governing permissions
13+
and limitations under the License.

Notice.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Copyright (c) Arjen Post
2+
3+
Portions of this software were developed by Microsoft Open
4+
Technologies, Inc. They are extracted from ASP.NET Web API
5+
(http://aspnetwebstack.codeplex.com/) and slightly modified.

PartialResponse.sln

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PartialResponse", "src\PartialResponse\PartialResponse.csproj", "{6E7022FB-903F-4B66-A245-012771CE3DE0}"
5+
EndProject
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PartialResponse.Test", "test\PartialResponse.Test\PartialResponse.Test.csproj", "{D6B1FD54-03CA-401B-8D7A-85656B2FA6C7}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{6E7022FB-903F-4B66-A245-012771CE3DE0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{6E7022FB-903F-4B66-A245-012771CE3DE0}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{6E7022FB-903F-4B66-A245-012771CE3DE0}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{6E7022FB-903F-4B66-A245-012771CE3DE0}.Release|Any CPU.Build.0 = Release|Any CPU
18+
{D6B1FD54-03CA-401B-8D7A-85656B2FA6C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{D6B1FD54-03CA-401B-8D7A-85656B2FA6C7}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{D6B1FD54-03CA-401B-8D7A-85656B2FA6C7}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{D6B1FD54-03CA-401B-8D7A-85656B2FA6C7}.Release|Any CPU.Build.0 = Release|Any CPU
22+
EndGlobalSection
23+
GlobalSection(SolutionProperties) = preSolution
24+
HideSolutionNode = FALSE
25+
EndGlobalSection
26+
EndGlobal

0 commit comments

Comments
 (0)