-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLight.SharedCore.csproj
More file actions
47 lines (42 loc) · 2.13 KB
/
Light.SharedCore.csproj
File metadata and controls
47 lines (42 loc) · 2.13 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
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<Nullable>enable</Nullable>
<LangVersion>13.0</LangVersion>
<Version>3.0.0</Version>
<Authors>Kenny Pflug</Authors>
<Company>Kenny Pflug</Company>
<Copyright>Copyright © Kenny Pflug 2022, 2025</Copyright>
<Description>Provides common abstractions and in-memory infrastructure for writing .NET apps.</Description>
<PackageTags>database-access-abstractions;clock;number-parsing;entities</PackageTags>
<TreatWarningsAsErrors Condition="'$(Configuration)' == 'Release'">true</TreatWarningsAsErrors>
<IsPackable>true</IsPackable>
<PackageIcon>light-logo.png</PackageIcon>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageProjectUrl>https://github.com/feO2x/Light.SharedCore</PackageProjectUrl>
<RepositoryUrl>https://github.com/feO2x/Light.SharedCore.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageReleaseNotes>
Light.SharedCore 3.0.0
--------------------------------
- overhaul DatabaseAccessAbstractions: only ISession is left, all other interfaces were removed
- read all docs at https://github.com/feO2x/Light.SharedCore
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Light.GuardClauses" Version="13.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" />
<PackageReference Include="IsExternalInit" Version="1.0.3" PrivateAssets="all" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.3" />
</ItemGroup>
<ItemGroup>
<None Include="../light-logo.png" Pack="true" PackagePath="\" />
<None Include="../readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>