-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimeSliceEntityFrameWorkExtensions.csproj
32 lines (26 loc) · 1.34 KB
/
TimeSliceEntityFrameWorkExtensions.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Hochfrequenz Unternehmensberatung GmbH</Authors>
<PackageProjectUrl>https://github.com/Hochfrequenz/time_slice_net</PackageProjectUrl>
<PackageLicense>https://github.com/Hochfrequenz/time_slice_net/blob/main/LICENSE</PackageLicense>
<RepositoryUrl>https://github.com/Hochfrequenz/time_slice_net</RepositoryUrl>
<LangVersion>9</LangVersion>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DocumentationFile>bin\Debug\TimeSliceEntityFrameWorkExtensions.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DocumentationFile>bin\Release\TimeSliceEntityFrameWorkExtensions.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\TimeSlice\TimeSlice.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.20" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.20" />
</ItemGroup>
</Project>