Skip to content

Commit 0b9df36

Browse files
committed
migrated projects from project.json to .csproj
1 parent 3292696 commit 0b9df36

6 files changed

Lines changed: 87 additions & 87 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp1.1</TargetFramework>
5+
<DebugType>portable</DebugType>
6+
<AssemblyName>PartialResponse.AspNetCore.Mvc.Demo</AssemblyName>
7+
<OutputType>Exe</OutputType>
8+
<PackageId>PartialResponse.AspNetCore.Mvc.Demo</PackageId>
9+
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
10+
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<ProjectReference Include="..\..\src\PartialResponse.AspNetCore.Mvc.Formatters.Json\PartialResponse.AspNetCore.Mvc.Formatters.Json.csproj" />
14+
</ItemGroup>
15+
16+
<ItemGroup>
17+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.1.1" />
18+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
19+
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="1.1.1" />
20+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.1" />
21+
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.1.1" />
22+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.1" />
23+
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.1" />
24+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.1" />
25+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.1" />
26+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="1.1.1" />
27+
</ItemGroup>
28+
29+
</Project>

samples/PartialResponse.AspNetCore.Mvc.Demo/project.json

Lines changed: 0 additions & 30 deletions
This file was deleted.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<Description>ASP.NET Core MVC formatter for partial response (fields) JSON output.</Description>
5+
<AssemblyTitle>PartialResponse.AspNetCore.Mvc.Formatters.Json</AssemblyTitle>
6+
<VersionPrefix>1.0.0-beta2</VersionPrefix>
7+
<Authors>Arjen Post</Authors>
8+
<TargetFrameworks>net451;netstandard1.6</TargetFrameworks>
9+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
10+
<AssemblyName>PartialResponse.AspNetCore.Mvc.Formatters.Json</AssemblyName>
11+
<PackageId>PartialResponse.AspNetCore.Mvc.Formatters.Json</PackageId>
12+
<PackageTags>aspnetcore;aspnetcoremvc;json;partial;response;partialresponse;fields</PackageTags>
13+
<PackageProjectUrl>https://github.com/dotarj/PartialResponse</PackageProjectUrl>
14+
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
15+
<RepositoryType>git</RepositoryType>
16+
<RepositoryUrl>git://github.com/dotarj/PartialResponse</RepositoryUrl>
17+
<NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
18+
</PropertyGroup>
19+
20+
<ItemGroup>
21+
<ProjectReference Include="..\PartialResponse.Core\PartialResponse.Core.csproj" />
22+
</ItemGroup>
23+
24+
<ItemGroup>
25+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="1.0.0" />
26+
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
27+
</ItemGroup>
28+
29+
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
30+
<Reference Include="System" />
31+
<Reference Include="Microsoft.CSharp" />
32+
</ItemGroup>
33+
34+
</Project>

src/PartialResponse.AspNetCore.Mvc.Formatters.Json/project.json

Lines changed: 0 additions & 32 deletions
This file was deleted.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp1.1</TargetFramework>
5+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
6+
<AssemblyName>PartialResponse.AspNetCore.Mvc.Formatters.Json.Test</AssemblyName>
7+
<PackageId>PartialResponse.AspNetCore.Mvc.Formatters.Json.Test</PackageId>
8+
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
9+
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
10+
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<ProjectReference Include="..\..\src\PartialResponse.AspNetCore.Mvc.Formatters.Json\PartialResponse.AspNetCore.Mvc.Formatters.Json.csproj" />
14+
</ItemGroup>
15+
16+
<ItemGroup>
17+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-preview-20170106-08" />
18+
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-beta5-build1225" />
19+
<PackageReference Include="xunit" Version="2.2.0-beta5-build3474" />
20+
<PackageReference Include="Moq" Version="4.7.0" />
21+
<PackageReference Include="Microsoft.DotNet.InternalAbstractions" Version="1.0.0" />
22+
</ItemGroup>
23+
24+
</Project>

test/PartialResponse.AspNetCore.Mvc.Formatters.Json.Test/project.json

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)