Skip to content

Commit 212feaa

Browse files
committed
feat(sdk): run dotnet migrate
1 parent 7a861b2 commit 212feaa

File tree

7 files changed

+97
-159
lines changed

7 files changed

+97
-159
lines changed

global.json

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<VersionPrefix>1.0.1</VersionPrefix>
5+
<TargetFramework>netcoreapp1.0</TargetFramework>
6+
<AssemblyName>JsonApiDotNetCore</AssemblyName>
7+
<PackageId>JsonApiDotNetCore</PackageId>
8+
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
9+
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50;portable-net45+win8</PackageTargetFallback>
10+
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="1.1.1" />
14+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.1" />
16+
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.1" />
17+
</ItemGroup>
18+
19+
</Project>

src/JsonApiDotNetCore/project.json

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp1.0</TargetFramework>
5+
<PreserveCompilationContext>true</PreserveCompilationContext>
6+
<AssemblyName>JsonApiDotNetCoreExample</AssemblyName>
7+
<OutputType>Exe</OutputType>
8+
<PackageId>JsonApiDotNetCoreExample</PackageId>
9+
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
10+
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;portable-net45+win8</PackageTargetFallback>
11+
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<ProjectReference Include="../JsonApiDotNetCore/JsonApiDotNetCore.csproj" />
15+
</ItemGroup>
16+
17+
<ItemGroup>
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.IISIntegration" Version="1.1.1" />
21+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.1" />
22+
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.1.1" />
23+
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="1.1.1" />
24+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.1" />
25+
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="1.1.1" />
26+
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.1" />
27+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.1" />
28+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.1" />
29+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="1.1.1" />
30+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="1.0.0" />
31+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="1.1.0" />
32+
<PackageReference Include="DotNetCoreDocs" Version="0.4.0" />
33+
</ItemGroup>
34+
35+
<ItemGroup>
36+
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="1.0.0" />
37+
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0" />
38+
</ItemGroup>
39+
40+
</Project>

src/JsonApiDotNetCoreExample/project.json

Lines changed: 0 additions & 77 deletions
This file was deleted.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp1.0</TargetFramework>
5+
<PreserveCompilationContext>true</PreserveCompilationContext>
6+
<AssemblyName>JsonApiDotNetCoreExampleTests</AssemblyName>
7+
<OutputType>Exe</OutputType>
8+
<PackageId>JsonApiDotNetCoreExampleTests</PackageId>
9+
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
10+
<ServerGarbageCollection>true</ServerGarbageCollection>
11+
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
12+
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;portable-net45+win8</PackageTargetFallback>
13+
</PropertyGroup>
14+
15+
<ItemGroup>
16+
<None Update="xunit.runner.json;appsettings.json">
17+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
18+
</None>
19+
</ItemGroup>
20+
21+
<ItemGroup>
22+
<ProjectReference Include="../../src/JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj" />
23+
</ItemGroup>
24+
25+
<ItemGroup>
26+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-preview-20170106-08" />
27+
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-beta5-build1225" />
28+
<PackageReference Include="xunit" Version="2.2.0-beta5-build3474" />
29+
<PackageReference Include="Bogus" Version="8.0.1-beta-1" />
30+
<PackageReference Include="Microsoft.DotNet.InternalAbstractions" Version="1.0.0" />
31+
<PackageReference Include="Moq" Version="4.7.1" />
32+
</ItemGroup>
33+
34+
<ItemGroup>
35+
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0" />
36+
</ItemGroup>
37+
38+
</Project>

test/JsonApiDotNetCoreExampleTests/project.json

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

0 commit comments

Comments
 (0)