|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk.Web"> |
2 | 2 | <PropertyGroup> |
3 | 3 | <TargetFramework>$(NetCoreAppVersion)</TargetFramework> |
4 | | - <PreserveCompilationContext>true</PreserveCompilationContext> |
5 | | - <AssemblyName>JsonApiDotNetCoreExample</AssemblyName> |
6 | | - <OutputType>Exe</OutputType> |
7 | | - <PackageId>JsonApiDotNetCoreExample</PackageId> |
8 | | - <AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel> |
9 | 4 | </PropertyGroup> |
10 | 5 |
|
11 | 6 | <ItemGroup> |
12 | | - <ProjectReference Include="../../JsonApiDotNetCore/JsonApiDotNetCore.csproj" /> |
| 7 | + <ProjectReference Include="..\..\JsonApiDotNetCore\JsonApiDotNetCore.csproj" /> |
13 | 8 | </ItemGroup> |
14 | 9 |
|
15 | 10 | <ItemGroup> |
16 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="$(EFCoreVersion)" /> |
17 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="$(EFCoreVersion)" /> |
18 | | - <PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="$(MicrosoftConfigurationVersion)" /> |
19 | | - <PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="$(MicrosoftConfigurationVersion)" /> |
20 | | - <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(MicrosoftConfigurationVersion)" /> |
21 | | - <PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="$(MicrosoftConfigurationVersion)" /> |
22 | | - <PackageReference Include="Microsoft.Extensions.Logging" Version="$(MicrosoftLoggingVersion)" /> |
23 | | - <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="$(MicrosoftLoggingVersion)" /> |
24 | | - <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="$(MicrosoftLoggingVersion)" /> |
25 | | - <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="$(MicrosoftOptionsVersion)" /> |
26 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="$(EFCoreToolsVersion)" /> |
27 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="$(EFCoreToolsVersion)" /> |
28 | 11 | <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(NpgsqlPostgreSQLVersion)" /> |
29 | 12 | </ItemGroup> |
30 | | - |
31 | | - <ItemGroup> |
32 | | - <Folder Include="Startups\" /> |
33 | | - </ItemGroup> |
34 | 13 | </Project> |
0 commit comments