mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
migrate to .NET Core SDK
This commit is contained in:
45
aspnet-core-signalr-angular.csproj
Normal file
45
aspnet-core-signalr-angular.csproj
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
||||||
|
<DebugType>portable</DebugType>
|
||||||
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
||||||
|
<AssemblyName>aspnet-core-signalr-angular</AssemblyName>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<PackageId>aspnet-core-signalr-angular</PackageId>
|
||||||
|
<RuntimeIdentifiers>win10-x64;win81-x64;win8-x64;win7-x64</RuntimeIdentifiers>
|
||||||
|
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
|
||||||
|
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;portable-net45+win8</PackageTargetFallback>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Update="wwwroot\**\*;Views\**\*;Areas\**\Views">
|
||||||
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="AutoMapper.Data" Version="1.0.0-beta1" />
|
||||||
|
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.2" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Server" Version="0.2.0-*" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.WebSockets" Version="1.0.1" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.1" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="1.1.1" />
|
||||||
|
<PackageReference Include="RecurrentTasks" Version="3.0.0-beta1" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
74
project.json
74
project.json
@@ -1,74 +0,0 @@
|
|||||||
{
|
|
||||||
"dependencies": {
|
|
||||||
"AutoMapper.Data": "1.0.0-beta1",
|
|
||||||
"Microsoft.NETCore.App": "1.1.0",
|
|
||||||
"Microsoft.AspNet.WebApi.Client": "5.1.1",
|
|
||||||
"Microsoft.AspNetCore.Mvc": "1.1.0",
|
|
||||||
"Microsoft.AspNetCore.Routing": "1.1.0",
|
|
||||||
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
|
|
||||||
"Microsoft.AspNetCore.SignalR.Server": "0.2.0-*",
|
|
||||||
"Microsoft.AspNetCore.StaticFiles": "1.1.0-*",
|
|
||||||
"Microsoft.AspNetCore.WebSockets": "0.2.0-*",
|
|
||||||
"Microsoft.EntityFrameworkCore": "1.1.0",
|
|
||||||
"Microsoft.EntityFrameworkCore.InMemory": "1.1.0",
|
|
||||||
"Microsoft.EntityFrameworkCore.Relational": "1.1.0",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "1.1.0",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "1.1.0",
|
|
||||||
"Microsoft.Extensions.Logging": "1.1.0",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "1.1.0",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "1.1.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0",
|
|
||||||
"RecurrentTasks": "3.0.0-beta1"
|
|
||||||
},
|
|
||||||
|
|
||||||
"tools": {
|
|
||||||
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
|
|
||||||
},
|
|
||||||
"runtimes": {
|
|
||||||
"win10-x64": {},
|
|
||||||
"win81-x64": {},
|
|
||||||
"win8-x64": {},
|
|
||||||
"win7-x64": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"netcoreapp1.1": {
|
|
||||||
"imports": [
|
|
||||||
"dotnet5.6",
|
|
||||||
"portable-net45+win8"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
"buildOptions": {
|
|
||||||
"emitEntryPoint": true,
|
|
||||||
"preserveCompilationContext": true,
|
|
||||||
"debugType": "portable"
|
|
||||||
},
|
|
||||||
|
|
||||||
"runtimeOptions": {
|
|
||||||
"configProperties": {
|
|
||||||
"System.GC.Server": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
"publishOptions": {
|
|
||||||
"include": [
|
|
||||||
"wwwroot",
|
|
||||||
"Views",
|
|
||||||
"Areas/**/Views",
|
|
||||||
"appsettings.json",
|
|
||||||
"web.config"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
"scripts": {
|
|
||||||
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
|
||||||
},
|
|
||||||
|
|
||||||
"tooling": {
|
|
||||||
"defaultNamespace": "LiveGameFeed"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user