|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk.Web"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <OutputType>Exe</OutputType> |
5 | | - <TargetFramework>net8.0</TargetFramework> |
6 | | - <ImplicitUsings>enable</ImplicitUsings> |
7 | | - <Nullable>enable</Nullable> |
| 3 | + <PropertyGroup> |
| 4 | + <OutputType>Exe</OutputType> |
| 5 | + <TargetFramework>net9.0</TargetFramework> |
| 6 | + <ImplicitUsings>enable</ImplicitUsings> |
| 7 | + <Nullable>enable</Nullable> |
8 | 8 | <EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild> |
9 | 9 | <AnalysisLevel>latest-recommended</AnalysisLevel> |
10 | 10 | </PropertyGroup> |
11 | 11 |
|
12 | 12 |
|
13 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
14 | | - <TreatWarningsAsErrors>True</TreatWarningsAsErrors> |
15 | | - </PropertyGroup> |
| 13 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 14 | + <TreatWarningsAsErrors>True</TreatWarningsAsErrors> |
| 15 | + </PropertyGroup> |
16 | 16 |
|
17 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
18 | | - <TreatWarningsAsErrors>True</TreatWarningsAsErrors> |
19 | | - </PropertyGroup> |
| 17 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 18 | + <TreatWarningsAsErrors>True</TreatWarningsAsErrors> |
| 19 | + </PropertyGroup> |
20 | 20 |
|
21 | | - <PropertyGroup> |
22 | | - <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
23 | | - <IsPackable>true</IsPackable> |
24 | | - <Title>AStar.Dev.Logging.Extensions</Title> |
25 | | - <Company>AStar Development</Company> |
26 | | - <Copyright>AStar Development, 2024</Copyright> |
27 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
28 | | - <PackageLicenseFile>LICENSE</PackageLicenseFile> |
29 | | - <IncludeSymbols>True</IncludeSymbols> |
30 | | - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
31 | | - <GenerateDocumentationFile>True</GenerateDocumentationFile> |
32 | | - <RepositoryUrl>https://github.com/astar-development/astar-dev-logging-extensions.git</RepositoryUrl> |
33 | | - <RepositoryType>git</RepositoryType> |
34 | | - <PackageProjectUrl>https://github.com/astar-development/astar-dev-logging-extensions</PackageProjectUrl> |
35 | | - <Description>A collection of logging utilities.</Description> |
36 | | - <Version>0.4.0</Version> |
37 | | - <Authors>AStar Development, Jason Barden</Authors> |
38 | | - <DocumentationFile>$(AssemblyName).xml</DocumentationFile> |
39 | | - <PackageIcon>AStar.png</PackageIcon> |
40 | | - <PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> |
41 | | - <PackageReleaseNotes>version 0.4.0, no changes - version increased as part of the migration to the new AStar NuGet / GitHub organisations.</PackageReleaseNotes> |
42 | | - </PropertyGroup> |
| 21 | + <PropertyGroup> |
| 22 | + <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 23 | + <IsPackable>true</IsPackable> |
| 24 | + <Title>AStar.Dev.Logging.Extensions</Title> |
| 25 | + <Company>AStar Development</Company> |
| 26 | + <Copyright>AStar Development, 2024</Copyright> |
| 27 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 28 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 29 | + <IncludeSymbols>True</IncludeSymbols> |
| 30 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 31 | + <GenerateDocumentationFile>True</GenerateDocumentationFile> |
| 32 | + <RepositoryUrl>https://github.com/astar-development/astar-dev-logging-extensions.git</RepositoryUrl> |
| 33 | + <RepositoryType>git</RepositoryType> |
| 34 | + <PackageProjectUrl>https://github.com/astar-development/astar-dev-logging-extensions</PackageProjectUrl> |
| 35 | + <Description>A collection of logging utilities.</Description> |
| 36 | + <Version>0.4.0</Version> |
| 37 | + <Authors>AStar Development, Jason Barden</Authors> |
| 38 | + <DocumentationFile>$(AssemblyName).xml</DocumentationFile> |
| 39 | + <PackageIcon>AStar.png</PackageIcon> |
| 40 | + <PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> |
| 41 | + <PackageReleaseNotes>version 0.4.0, no changes - version increased as part of the migration to the new AStar NuGet / GitHub organisations.</PackageReleaseNotes> |
| 42 | + </PropertyGroup> |
43 | 43 |
|
44 | | - <ItemGroup> |
45 | | - <PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" /> |
46 | | - <PackageReference Include="AStar.Dev.Utilities" Version="1.6.0" /> |
47 | | - <PackageReference Include="Serilog.AspNetCore" Version="8.0.3" /> |
48 | | - <PackageReference Include="Serilog.Enrichers.Span" Version="3.1.0" /> |
49 | | - <PackageReference Include="Serilog.Enrichers.Environment" Version="3.0.1" /> |
50 | | - <PackageReference Include="Serilog.Expressions" Version="5.0.0" /> |
51 | | - <PackageReference Include="Serilog.Sinks.Seq" Version="8.0.0" /> |
52 | | - <PackageReference Include="Serilog.Exceptions" Version="8.4.0" /> |
53 | | - <PackageReference Include="Serilog.Sinks.ApplicationInsights" Version="4.0.0" /> |
54 | | - </ItemGroup> |
| 44 | + <ItemGroup> |
| 45 | + <PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0"/> |
| 46 | + <PackageReference Include="AStar.Dev.Utilities" Version="1.6.0"/> |
| 47 | + <PackageReference Include="Serilog.AspNetCore" Version="8.0.3"/> |
| 48 | + <PackageReference Include="Serilog.Enrichers.Span" Version="3.1.0"/> |
| 49 | + <PackageReference Include="Serilog.Enrichers.Environment" Version="3.0.1"/> |
| 50 | + <PackageReference Include="Serilog.Expressions" Version="5.0.0"/> |
| 51 | + <PackageReference Include="Serilog.Sinks.Seq" Version="8.0.0"/> |
| 52 | + <PackageReference Include="Serilog.Exceptions" Version="8.4.0"/> |
| 53 | + <PackageReference Include="Serilog.Sinks.ApplicationInsights" Version="4.0.0"/> |
| 54 | + </ItemGroup> |
55 | 55 |
|
56 | | - <ItemGroup> |
57 | | - <None Include="..\..\AStar.png"> |
58 | | - <Pack>True</Pack> |
59 | | - <PackagePath>\</PackagePath> |
60 | | - </None> |
61 | | - <None Include="..\..\LICENSE"> |
62 | | - <Pack>True</Pack> |
63 | | - <PackagePath>\</PackagePath> |
64 | | - </None> |
65 | | - <None Include="..\..\README.md"> |
66 | | - <Pack>True</Pack> |
67 | | - <PackagePath>\</PackagePath> |
68 | | - </None> |
69 | | - </ItemGroup> |
| 56 | + <ItemGroup> |
| 57 | + <None Include="..\..\AStar.png"> |
| 58 | + <Pack>True</Pack> |
| 59 | + <PackagePath>\</PackagePath> |
| 60 | + </None> |
| 61 | + <None Include="..\..\LICENSE"> |
| 62 | + <Pack>True</Pack> |
| 63 | + <PackagePath>\</PackagePath> |
| 64 | + </None> |
| 65 | + <None Include="..\..\README.md"> |
| 66 | + <Pack>True</Pack> |
| 67 | + <PackagePath>\</PackagePath> |
| 68 | + </None> |
| 69 | + </ItemGroup> |
70 | 70 |
|
71 | 71 | </Project> |
72 | 72 |
|
|
0 commit comments