-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-pack.csproj
More file actions
34 lines (27 loc) · 1.79 KB
/
template-pack.csproj
File metadata and controls
34 lines (27 loc) · 1.79 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<TargetFramework>net10.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>$(NoWarn);CS2008;NU5128</NoWarn>
<PackageId>WebAPI.Controllers.Auth.Starter</PackageId>
<Version>1.0.0</Version>
<Authors>Alex Monteil</Authors>
<Company>UMN</Company>
<Description>Production-grade .NET 10 Web API starter boilerplate featuring built-in PostgreSQL 18 Alpine connection configurations, Serilog logs, and timing-attack hardened JWT authentication workflows.</Description>
<RepositoryUrl>https://github.com/alexmonteil/webapi-controllers-auth-starter</RepositoryUrl>
<PackageProjectUrl>https://github.com/alexmonteil/webapi-controllers-auth-starter</PackageProjectUrl>
<PackageReleaseNotes>Initial 1.0.0 release of the hardened, timing-attack resistant .NET 10 Web API Controllers authentication template framework.</PackageReleaseNotes>
<PackageTags>dotnet dotnet-new template webapi csharp jwt authentication postgresql security rbac boilerplate api token-refresh</PackageTags>
<Copyright>Copyright © 2026 Alex Monteil</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression> <PackageReadmeFile>README.md</PackageReadmeFile> </PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="LICENSE" Pack="true" PackagePath="\" />
<Content Include="content\**\*" Exclude="content\**\bin\**\*;content\**\obj\**\*;content\**\.git\**\*" />
</ItemGroup>
</Project>