-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataJuggler.RandomShuffler.Core.csproj
37 lines (30 loc) · 1.65 KB
/
DataJuggler.RandomShuffler.Core.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;netcoreapp3.1</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>This is a direct port of RandomShuffler for Dot Net Framework. Everything should work the same.
I am starting with the same version the Dot Net Framework was at, but since this is the first version for Dot Net Core, use with caution.</Description>
<Copyright>2020 DataJuggler - Use As Is Do Whatever you Want</Copyright>
<PackageLicenseFile>License.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/DataJuggler/RandomShuffler.Core</PackageProjectUrl>
<RepositoryUrl>https://github.com/DataJuggler/RandomShuffler.Core.git</RepositoryUrl>
<PackageTags>C#, Random Numbers, Shuffle, Shuffler</PackageTags>
<PackageReleaseNotes>Version 1.2.6: I implemented IDisposeable so I could use this project in a Using statement
Version 1.2.5 I changed from targeting Dot Net Core 3.0, to Net Core 3.1, .Net Standard2.1
This is the first release for Dot Net Core. I am building a site called BlazorAnimations as a demo, and I needed this available for Dot Net Core.</PackageReleaseNotes>
<AssemblyVersion>1.2.5.0</AssemblyVersion>
<FileVersion>1.2.5.0</FileVersion>
<Version>1.2.6</Version>
<Company>DataJuggler</Company>
<Authors>DataJuggler</Authors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DataJuggler.UltimateHelper.Core" Version="1.2.0" />
</ItemGroup>
<ItemGroup>
<None Include="License\License.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>