-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Litdex.Security.RNG.csproj
48 lines (42 loc) · 1.8 KB
/
Litdex.Security.RNG.csproj
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>Shiroechi</Authors>
<Company>Litdex</Company>
<Description>Library that provide many random generator algorithm.</Description>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/Shiroechi/Litdex.Security.RNG</PackageProjectUrl>
<RepositoryUrl>https://github.com/Shiroechi/Litdex.Security.RNG</RepositoryUrl>
<PackageTags>Random RNG PRNG GJrand JSF MSWS PCG Romu Seiran SFC Shioi Shishua Splitmix Squares Tyche Wyrand Xoroshiro</PackageTags>
<NeutralLanguage>English</NeutralLanguage>
<Version>2.8.0</Version>
<AssemblyVersion>2.8.0.0</AssemblyVersion>
<RootNamespace>Litdex</RootNamespace>
<PackageReleaseNotes>- Add new async method for Choice, Sample, Shuffle in ISequence
- Fix xml docs
- Fix minor bugs</PackageReleaseNotes>
<Copyright>Shiroechi</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<EnableNETAnalyzers>false</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<FileVersion>2.8.0.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>.\Litdex.Security.RNG.xml</DocumentationFile>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>false</Optimize>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Litdex.Utilities\Litdex.Utilities.csproj" />
</ItemGroup>
</Project>