|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <AnalysisLevel>latest-recommended</AnalysisLevel> |
5 | | - <Authors>AStar Development, Jason Barden</Authors> |
6 | | - <Company>AStar Development</Company> |
7 | | - <Copyright>AStar Development, 2025</Copyright> |
8 | | - <Description>A collection of useful utilities that do not fit within any of the other, more targeted, AStar NuGet packages.</Description> |
9 | | - <DocumentationFile>$(AssemblyName).xml</DocumentationFile> |
10 | | - <EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild> |
11 | | - <GenerateDocumentationFile>True</GenerateDocumentationFile> |
12 | | - <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 4 | + <TargetFramework>net9.0</TargetFramework> |
13 | 5 | <ImplicitUsings>enable</ImplicitUsings> |
14 | | - <IncludeSymbols>True</IncludeSymbols> |
15 | | - <IsPackable>true</IsPackable> |
16 | 6 | <Nullable>enable</Nullable> |
17 | | - <PackageIcon>AStar.png</PackageIcon> |
18 | | - <PackageLicenseFile>LICENSE</PackageLicenseFile> |
19 | | - <PackageProjectUrl>https://github.com/astar-development/astar-dev-utilities</PackageProjectUrl> |
| 7 | + <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 8 | + <Title>AStar Dev Utilities</Title> |
| 9 | + <Company>AStar Development</Company> |
| 10 | + <Copyright>AStar Development, 2024</Copyright> |
20 | 11 | <PackageReadmeFile>Readme.md</PackageReadmeFile> |
21 | | - <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
22 | | - <RepositoryType>git</RepositoryType> |
| 12 | + <IncludeSymbols>True</IncludeSymbols> |
| 13 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 14 | + <GenerateDocumentationFile>True</GenerateDocumentationFile> |
23 | 15 | <RepositoryUrl>https://github.com/astar-development/astar-dev-utilities.git</RepositoryUrl> |
| 16 | + <RepositoryType>git</RepositoryType> |
| 17 | + <PackageProjectUrl>https://github.com/astar-development/astar-dev-utilities</PackageProjectUrl> |
| 18 | + <Description>A collection of useful utilities that do not fit within any of the other, more targeted, AStar Dev NuGet packages.</Description> |
| 19 | + <Version>1.6.2</Version> |
| 20 | + <Authors>AStar Development, Jason Barden</Authors> |
| 21 | + <RepositoryType>git</RepositoryType> |
| 22 | + <IncludeSymbols>True</IncludeSymbols> |
24 | 23 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
25 | | - <TargetFramework>net9.0</TargetFramework> |
26 | | - <Title>AStar Dev Utilities</Title> |
27 | | - <Version>1.6.1</Version> |
| 24 | + <PackageReadmeFile>Readme.md</PackageReadmeFile> |
| 25 | + <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
| 26 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 27 | + <DocumentationFile>$(AssemblyName).xml</DocumentationFile> |
| 28 | + <PackageReleaseNotes>Add RemoveTrailing extension and fix bug in truncate so length specified is honoured.</PackageReleaseNotes> |
28 | 29 | </PropertyGroup> |
29 | 30 |
|
| 31 | + <ItemGroup> |
| 32 | + <None Include="LICENSE" Pack="true" PackagePath=""/> |
| 33 | + <None Include="Readme.md" Pack="true" PackagePath=""/> |
| 34 | + </ItemGroup> |
| 35 | + |
30 | 36 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
31 | 37 | <TreatWarningsAsErrors>True</TreatWarningsAsErrors> |
32 | 38 | <NoWarn>1701;1702;</NoWarn> |
|
37 | 43 | <NoWarn>1701;1702;</NoWarn> |
38 | 44 | </PropertyGroup> |
39 | 45 |
|
40 | | - <ItemGroup> |
41 | | - <None Include="..\..\AStar.png"> |
42 | | - <Pack>True</Pack> |
43 | | - <PackagePath>\</PackagePath> |
44 | | - </None> |
45 | | - <None Include="..\..\LICENSE"> |
46 | | - <Pack>True</Pack> |
47 | | - <PackagePath>\</PackagePath> |
48 | | - </None> |
49 | | - <None Include="..\..\Readme.md"> |
50 | | - <Pack>True</Pack> |
51 | | - <PackagePath>\</PackagePath> |
52 | | - </None> |
53 | | - </ItemGroup> |
54 | | - |
55 | 46 | <ItemGroup> |
56 | 47 | <None Update="AStar.png"> |
57 | 48 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
58 | 49 | </None> |
59 | 50 | </ItemGroup> |
60 | 51 |
|
61 | | - <ItemGroup> |
62 | | - <PackageReference Include="AStar.Dev.Technical.Debt.Reporting" Version="0.1.0"/> |
63 | | - <PackageReference Include="TestableIO.System.IO.Abstractions.Wrappers" Version="22.0.14"/> |
64 | | - </ItemGroup> |
65 | | - |
66 | 52 | </Project> |
0 commit comments