Skip to content

Commit 683e782

Browse files
committed
adjusted Project
1 parent 6523011 commit 683e782

File tree

1 file changed

+54
-54
lines changed

1 file changed

+54
-54
lines changed

src/SpanExtensions.csproj

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

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&lt;T&gt; and Span&lt;T&gt; 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&lt;T&gt; and Span&lt;T&gt; 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.
1414

15-
SpanExtensions.Net aims to help developers use ReadonlySpan&lt;T&gt; and Span&lt;T&gt; more productively, efficiently and safely and write overall more performant Programs.
15+
SpanExtensions.Net aims to help developers use ReadonlySpan&lt;T&gt; and Span&lt;T&gt; more productively, efficiently and safely and write overall more performant Programs.
1616

17-
Never again switch back to using string instead of ReadonlySpan&lt;T&gt;, 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>
17+
Never again switch back to using string instead of ReadonlySpan&lt;T&gt;, 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>
3030

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>
3434

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>
3838

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>
4242

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>
4646

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>
5858

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>
6565

6666
</Project>

0 commit comments

Comments
 (0)