|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFrameworks>net9.0;net8.0;net7.0;net6.0;net5.0;netstandard2.1</TargetFrameworks> |
5 | | - <ImplicitUsings>disable</ImplicitUsings> |
6 | | - <Nullable>enable</Nullable> |
7 | | - <GenerateDocumentationFile>True</GenerateDocumentationFile> |
8 | | - <Platforms>AnyCPU</Platforms> |
9 | | - <Title>Span Extensions</Title> |
10 | | - <Authors>dragon-cs</Authors> |
11 | | - <Company>draconware</Company> |
12 | | - <Description> |
13 | | - ReadonlySpan<T> and Span<T> are great Types in C#, but unfortunately working with them can sometimes be sort of a hassle and some use cases seem straight up impossible, even though they are not. |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>net9.0;net8.0;net7.0;net6.0;net5.0;netstandard2.1</TargetFrameworks> |
| 5 | + <ImplicitUsings>disable</ImplicitUsings> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <GenerateDocumentationFile>True</GenerateDocumentationFile> |
| 8 | + <Platforms>AnyCPU</Platforms> |
| 9 | + <Title>Span Extensions</Title> |
| 10 | + <Authors>dragon-cs</Authors> |
| 11 | + <Company>draconware</Company> |
| 12 | + <Description> |
| 13 | + ReadonlySpan<T> and Span<T> are great Types in C#, but unfortunately working with them can sometimes be sort of a hassle and some use cases seem straight up impossible, even though they are not. |
14 | 14 |
|
15 | | - SpanExtensions.Net aims to help developers use ReadonlySpan<T> and Span<T> more productively, efficiently and safely and write overall more performant Programs. |
| 15 | + SpanExtensions.Net aims to help developers use ReadonlySpan<T> and Span<T> more productively, efficiently and safely and write overall more performant Programs. |
16 | 16 |
|
17 | | - Never again switch back to using string instead of ReadonlySpan<T>, just because the method you seek is not supported. |
18 | | - </Description> |
19 | | - <RepositoryUrl>https://github.com/draconware-dev/SpanExtensions.Net</RepositoryUrl> |
20 | | - <PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> |
21 | | - <Copyright>Copyright (c) 2024 draconware-dev</Copyright> |
22 | | - <PackageTags>Span;Performance;Extension;String</PackageTags> |
23 | | - <PackageReleaseNotes>https://github.com/draconware-dev/SpanExtensions.Net/blob/main/Changelog.md</PackageReleaseNotes> |
24 | | - <PackageLicenseFile>LICENSE</PackageLicenseFile> |
25 | | - <Version>1.5</Version> |
26 | | - <PackageId>SpanExtensions.Net</PackageId> |
27 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
28 | | - <PackageIcon>icon.png</PackageIcon> |
29 | | - </PropertyGroup> |
| 17 | + Never again switch back to using string instead of ReadonlySpan<T>, just because the method you seek is not supported. |
| 18 | + </Description> |
| 19 | + <RepositoryUrl>https://github.com/draconware-dev/SpanExtensions.Net</RepositoryUrl> |
| 20 | + <PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> |
| 21 | + <Copyright>Copyright (c) 2024 draconware-dev</Copyright> |
| 22 | + <PackageTags>Span;Performance;Extension;String</PackageTags> |
| 23 | + <PackageReleaseNotes>https://github.com/draconware-dev/SpanExtensions.Net/blob/main/Changelog.md</PackageReleaseNotes> |
| 24 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 25 | + <Version>1.5.1</Version> |
| 26 | + <PackageId>SpanExtensions.Net</PackageId> |
| 27 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 28 | + <PackageIcon>icon.png</PackageIcon> |
| 29 | + </PropertyGroup> |
30 | 30 |
|
31 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
32 | | - <DebugType>portable</DebugType> |
33 | | - </PropertyGroup> |
| 31 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 32 | + <DebugType>portable</DebugType> |
| 33 | + </PropertyGroup> |
34 | 34 |
|
35 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
36 | | - <DebugType>portable</DebugType> |
37 | | - </PropertyGroup> |
| 35 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
| 36 | + <DebugType>portable</DebugType> |
| 37 | + </PropertyGroup> |
38 | 38 |
|
39 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
40 | | - <DebugType>portable</DebugType> |
41 | | - </PropertyGroup> |
| 39 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 40 | + <DebugType>portable</DebugType> |
| 41 | + </PropertyGroup> |
42 | 42 |
|
43 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
44 | | - <DebugType>portable</DebugType> |
45 | | - </PropertyGroup> |
| 43 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
| 44 | + <DebugType>portable</DebugType> |
| 45 | + </PropertyGroup> |
46 | 46 |
|
47 | | - <ItemGroup> |
48 | | - <None Include="README.md"> |
49 | | - <Pack>True</Pack> |
50 | | - <PackagePath>\</PackagePath> |
51 | | - </None> |
52 | | - <None Include="..\LICENSE"> |
53 | | - <Pack>True</Pack> |
54 | | - <PackagePath>\</PackagePath> |
55 | | - <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
56 | | - </None> |
57 | | - </ItemGroup> |
| 47 | + <ItemGroup> |
| 48 | + <None Include="README.md"> |
| 49 | + <Pack>True</Pack> |
| 50 | + <PackagePath>\</PackagePath> |
| 51 | + </None> |
| 52 | + <None Include="..\LICENSE"> |
| 53 | + <Pack>True</Pack> |
| 54 | + <PackagePath>\</PackagePath> |
| 55 | + <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
| 56 | + </None> |
| 57 | + </ItemGroup> |
58 | 58 |
|
59 | | - <ItemGroup> |
60 | | - <None Include="icon.png"> |
61 | | - <Pack>True</Pack> |
62 | | - <PackagePath>\</PackagePath> |
63 | | - </None> |
64 | | - </ItemGroup> |
| 59 | + <ItemGroup> |
| 60 | + <None Include="icon.png"> |
| 61 | + <Pack>True</Pack> |
| 62 | + <PackagePath>\</PackagePath> |
| 63 | + </None> |
| 64 | + </ItemGroup> |
65 | 65 |
|
66 | 66 | </Project> |
0 commit comments