main
Last change
on this file since 17d6948 was 17d6948, checked in by Nikola Mishevski <Nikola.Mishevski@…>, 6 days ago |
initial commit WineTracker Project
|
-
Property mode
set to
100644
|
File size:
965 bytes
|
Rev | Line | |
---|
[17d6948] | 1 | <Project Sdk="Microsoft.NET.Sdk.Web">
|
---|
| 2 |
|
---|
| 3 | <PropertyGroup>
|
---|
| 4 | <TargetFramework>net8.0</TargetFramework>
|
---|
| 5 | <Nullable>enable</Nullable>
|
---|
| 6 | <ImplicitUsings>enable</ImplicitUsings>
|
---|
| 7 | </PropertyGroup>
|
---|
| 8 |
|
---|
| 9 | <ItemGroup>
|
---|
| 10 | <PackageReference Include="Dapper" Version="2.1.35" />
|
---|
| 11 | <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.10" />
|
---|
| 12 | <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.10">
|
---|
| 13 | <PrivateAssets>all</PrivateAssets>
|
---|
| 14 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
---|
| 15 | </PackageReference>
|
---|
| 16 | <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.6" />
|
---|
| 17 | <PackageReference Include="Npgsql" Version="9.0.2" />
|
---|
| 18 | <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.2" />
|
---|
| 19 | <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
---|
| 20 | </ItemGroup>
|
---|
| 21 |
|
---|
| 22 | </Project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.