-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNefarius.Utilities.AspNetCore.csproj
More file actions
51 lines (45 loc) · 2.17 KB
/
Nefarius.Utilities.AspNetCore.csproj
File metadata and controls
51 lines (45 loc) · 2.17 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
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>NSS-128x128.png</PackageIcon>
<PackageIconUrl />
<RepositoryUrl>https://github.com/nefarius/Nefarius.Utilities.AspNetCore</RepositoryUrl>
<PackageProjectUrl>https://github.com/nefarius/Nefarius.Utilities.AspNetCore</PackageProjectUrl>
<Authors>Benjamin Höglinger-Stelzer</Authors>
<OutputPath>$(SolutionDir)bin\</OutputPath>
<Copyright>Copyright © Benjamin Höglinger-Stelzer 2022-2025</Copyright>
<LangVersion>latest</LangVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>My opinionated collection of utilities for ASP.NET Core applications.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<Version>1.8.4</Version>
</PropertyGroup>
<PropertyGroup>
<MinVerTagPrefix>v</MinVerTagPrefix>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<None Include="..\assets\NSS-128x128.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="MonoMod.RuntimeDetour" Version="25.3.2" />
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.File.Archive" Version="1.0.6" />
<PackageReference Include="SharpZipLib" Version="1.4.2" />
</ItemGroup>
</Project>