-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOdin.System.StringEnum.csproj
More file actions
26 lines (23 loc) · 1.08 KB
/
Odin.System.StringEnum.csproj
File metadata and controls
26 lines (23 loc) · 1.08 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<RootNamespace>Odin.System</RootNamespace>
<ImplicitUsings>true</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>Provides enum-like behaviour for a set of string values.
Usage: Inherit from StringEnum and add only public const string members.
Use the Values static property to work with a list of all the string values.
Use HasValue(string value) to find out whether a particular string value is a member of Values.
</Description>
<WarningsAsErrors>1591;1573;</WarningsAsErrors> <!-- Not to be removed. Documentation is required. -->
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Result\Odin.System.Result.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="../../Assets/icon.png" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>