-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
68 lines (63 loc) · 3.34 KB
/
Directory.Build.props
File metadata and controls
68 lines (63 loc) · 3.34 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<NoWarn>NU5104</NoWarn>
<Version>10.0.0.0</Version>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<FileVersion>10.0.0.0</FileVersion>
<PlatformTarget>AnyCPU</PlatformTarget>
<Configurations>Debug;Release</Configurations>
<LangVersion>latest</LangVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<nullable>enable</nullable>
<License>LICENSE</License>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IsPackable>true</IsPackable>
<Authors>Michael Vivet</Authors>
<Owners>Michael Vivet</Owners>
<Product>$(ProjectName)</Product>
<Summary>Reusable libraries for building .NET microservice applications</Summary>
<Description>
This package is part of the Nano Library, a set of reusable .NET libraries for building microservice applications.
Nano addresses common non-business concerns such as logging, persistence, messaging, validation, and documentation,
while remaining fully configurable and extensible, so applications can stay focused on business logic.
See https://github.com/Nano-Core/Nano.Library for details.
</Description>
<PackageReleaseNotes>
- .NET 10 support.
- Comprehensive rewrite with performance optimizations, improvements, and bug fixes.
- Not compatible with previous versions of Nano.
</PackageReleaseNotes>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>master</RepositoryBranch>
<RepositoryUrl>https://github.com/Nano-Core/Nano.Library.git</RepositoryUrl>
<RepositoryCommit>$(GitCommitHash)</RepositoryCommit>
<EmbedAllSources>true</EmbedAllSources>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>$(Version)</PackageVersion>
<PackageTags>configuration logging data eventing storage mvc cache audit api console identity authentication authorization health-checks sql repositories middleware error-handling documentation security http-policy-headers validation event-handlers http https virus-scan versioning localization timezone session response-compression response-cache migrations serialization startup-tasks entity-events </PackageTags>
<PackageProjectUrl>https://github.com/Nano-Core/Nano.Library/$(ProjectName)</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='RELEASE'">
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE" Pack="true" Visible="false" PackagePath="" />
<None Include="..\icon.png" Pack="true" Visible="false" PackagePath="" />
<None Include="..\README.md" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.103" />
</ItemGroup>
</Project>