File tree Expand file tree Collapse file tree
samples/features/json/todo-app/dotnet-rest-api Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 66 "System" : " Information" ,
77 "Microsoft" : " Information"
88 }
9+ },
10+ "ConnectionStrings" : {
11+ "TodoDb" : " Server=.\\ SQLEXPRESS;Database=TodoDb;Integrated Security=True"
912 }
1013}
Original file line number Diff line number Diff line change 1+ <Project Sdk =" Microsoft.NET.Sdk.Web" >
2+
3+ <PropertyGroup >
4+ <TargetFrameworks >netcoreapp1.0;net46</TargetFrameworks >
5+ <PreserveCompilationContext >true</PreserveCompilationContext >
6+ <AssemblyName >dotnet-rest-api</AssemblyName >
7+ <OutputType >Exe</OutputType >
8+ <PackageId >dotnet-rest-api</PackageId >
9+ <RuntimeFrameworkVersion Condition =" '$(TargetFramework)' == 'netcoreapp1.0' " >1.0.4</RuntimeFrameworkVersion >
10+ </PropertyGroup >
11+
12+ <ItemGroup >
13+ <None Update =" Views" >
14+ <CopyToPublishDirectory >PreserveNewest</CopyToPublishDirectory >
15+ </None >
16+ </ItemGroup >
17+
18+ <ItemGroup >
19+ <PackageReference Include =" Belgrade.Sql.Client" Version =" 0.3.0" />
20+ <PackageReference Include =" Microsoft.AspNetCore.Mvc" Version =" 1.0.3" />
21+ <PackageReference Include =" Microsoft.AspNetCore.Server.IISIntegration" Version =" 1.0.2" />
22+ <PackageReference Include =" Microsoft.AspNetCore.Server.Kestrel" Version =" 1.0.3" />
23+ <PackageReference Include =" Microsoft.Extensions.Configuration.EnvironmentVariables" Version =" 1.0.2" />
24+ <PackageReference Include =" Microsoft.Extensions.Configuration.FileExtensions" Version =" 1.0.2" />
25+ <PackageReference Include =" Microsoft.Extensions.Configuration.Json" Version =" 1.0.2" />
26+ <PackageReference Include =" Microsoft.Extensions.Logging" Version =" 1.0.2" />
27+ <PackageReference Include =" Microsoft.Extensions.Logging.Console" Version =" 1.0.2" />
28+ <PackageReference Include =" Microsoft.Extensions.Logging.Debug" Version =" 1.0.2" />
29+ <PackageReference Include =" System.Data.SqlClient" Version =" 4.1.0" />
30+ </ItemGroup >
31+
32+ <ItemGroup Condition =" '$(TargetFramework)' == 'net46' " >
33+ <Reference Include =" System" />
34+ <Reference Include =" Microsoft.CSharp" />
35+ </ItemGroup >
36+
37+ </Project >
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments