Skip to content

Commit 1e66ce9

Browse files
authored
Merge pull request #8
Initial package release
2 parents 08e8547 + d6e256e commit 1e66ce9

3 files changed

Lines changed: 29 additions & 13 deletions

File tree

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
2+
33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5-
<PackageId>TryAtSoftware.Randomizer</PackageId>
6-
<Title>TryAtSoftware.Randomizer</Title>
7-
<Authors>Tony Troeff</Authors>
8-
<Description>This package should be used to make your object initialization process in tests cleaner and easier than ever before.</Description>
9-
<PackageLicenseUrl>https://github.com/TryAtSoftware/Randomizer/blob/main/LICENSE</PackageLicenseUrl>
10-
<RepositoryUrl>https://github.com/TryAtSoftware/Randomizer</RepositoryUrl>
11-
<Company>Try at software</Company>
5+
<NuspecFile>.\TryAtSoftware.Randomizer.Core.nuspec</NuspecFile>
126
</PropertyGroup>
137

148
<ItemGroup>
15-
<PackageReference Include="JetBrains.Annotations" Version="2021.1.0" />
9+
<PackageReference Include="JetBrains.Annotations" Version="2021.1.0">
10+
<PrivateAssets>all</PrivateAssets>
11+
</PackageReference>
1612
</ItemGroup>
1713

1814
</Project>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>TryAtSoftware.Randomizer</id>
5+
<version>1.0.0</version>
6+
<authors>Tony Troeff</authors>
7+
<owners>Tony Troeff</owners>
8+
<projectUrl>https://github.com/TryAtSoftware/Randomizer</projectUrl>
9+
<repository url="https://github.com/TryAtSoftware/Randomizer" />
10+
<readme>README.md</readme>
11+
<license type="file">LICENSE</license>
12+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
13+
<description>This package should be used to make your object initialization process in tests cleaner and easier than ever before.</description>
14+
<tags>randomization</tags>
15+
<copyright>Copyright (c) .NET Foundation and contributors 2008-2021</copyright>
16+
</metadata>
17+
<files>
18+
<file src="../../LICENSE" target="LICENSE" />
19+
<file src="../../README.md" target="README.md" />
20+
</files>
21+
</package>

tests/TryAtSoftware.Randomizer.Core.Tests/TryAtSoftware.Randomizer.Core.Tests.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,22 @@
22

33
<PropertyGroup>
44
<TargetFramework>net5.0</TargetFramework>
5-
65
<IsPackable>false</IsPackable>
76
</PropertyGroup>
87

98
<ItemGroup>
109
<PackageReference Include="coverlet.collector" Version="3.0.3">
1110
<PrivateAssets>all</PrivateAssets>
12-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1311
</PackageReference>
1412
<PackageReference Include="coverlet.msbuild" Version="3.0.3">
1513
<PrivateAssets>all</PrivateAssets>
16-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
14+
</PackageReference>
15+
<PackageReference Include="JetBrains.Annotations" Version="2021.1.0">
16+
<PrivateAssets>all</PrivateAssets>
1717
</PackageReference>
1818
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
1919
<PackageReference Include="xunit" Version="2.4.1" />
2020
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
21-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2221
<PrivateAssets>all</PrivateAssets>
2322
</PackageReference>
2423
</ItemGroup>

0 commit comments

Comments
 (0)