-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathEftdb.csproj
More file actions
46 lines (46 loc) · 2.12 KB
/
Eftdb.csproj
File metadata and controls
46 lines (46 loc) · 2.12 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>CmdScale.EntityFrameworkCore.TimescaleDB</AssemblyName>
<RootNamespace>CmdScale.EntityFrameworkCore.TimescaleDB</RootNamespace>
<PackageId>CmdScale.EntityFrameworkCore.TimescaleDB</PackageId>
<Version>1.0.0</Version>
<Authors>CmdScale</Authors>
<Description>The core runtime library. You include this in your project to enable TimescaleDB-specific features when configuring your DbContext.</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>CmdScale.EntityFrameworkCore.TimescaleDB</Title>
<EnablePackageValidation>true</EnablePackageValidation>
<Copyright>CmdScale</Copyright>
<PackageProjectUrl>https://github.com/cmdscale/CmdScale.EntityFrameworkCore.TimescaleDB</PackageProjectUrl>
<PackageIcon>cmd-nuget-logo.jpg</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/cmdscale/CmdScale.EntityFrameworkCore.TimescaleDB</RepositoryUrl>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageTags>timescaledb;timescale;efcore;ef-core;entityframeworkcore;postgresql;postgres;time-series;timeseries;data;database;efcore-provider;</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\assets\cmd-nuget-logo.jpg">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="CmdScale.EntityFrameworkCore.TimescaleDB.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
</Project>