Skip to content

Commit

Permalink
#22 Prepare for release 2.0
Browse files Browse the repository at this point in the history
This includes:
* Updating LICENSE
* Adding nuspec file
  • Loading branch information
sguldmund committed Jan 24, 2024
1 parent 9c227df commit 7ccb572
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"cake.tool": {
"version": "0.38.5",
"commands": [
"dotnet-cake"
]
}
}
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017 Toni Solarin-Sodara
Copyright (c) Søren Guldmund

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 7 additions & 0 deletions Pose.sln
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Pose.Tests", "test\Pose.Tes
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sandbox", "src\Sandbox\Sandbox.csproj", "{46827F5F-E0FD-428B-960C-9EFFFA3D7D9D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "0. Solution", "0. Solution", "{970BBCC3-BC34-424B-B171-7ACC67C7BDC6}"
ProjectSection(SolutionItems) = preProject
LICENSE = LICENSE
README.md = README.md
nuget\Poser.nuspec = nuget\Poser.nuspec
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
53 changes: 53 additions & 0 deletions nuget/Poser.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Poser</id>
<version>2.0.0</version>
<title>Pose</title>
<authors>Søren Guldmund</authors>
<owners>Søren Guldmund</owners>
<projectUrl>https://github.com/Miista/Pose</projectUrl>
<repository type="git" url="https://github.com/Miista/Pose.git" />
<license type="expression">MIT</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>pose;mocking;testing;unit-test;isolation-framework;test-framework</tags>
<description>Replace any .NET method (including static and non-virtual) with a delegate</description>
<copyright>Copyright 2024</copyright>
<readme>docs\README.md</readme>
<releaseNotes>
Provide better exception message when we cannot create instance.
</releaseNotes>

<dependencies>
<group targetFramework="netstandard2.0" />
</dependencies>
</metadata>

<files>
<!-- .NET Standard 2.0 -->
<file src="netstandard2.0\*.dll" target="lib\netstandard2.0" />
<file src="netstandard2.0\*.xml" target="lib\netstandard2.0" />

<!-- .NET Core 2.0 -->
<file src="netcoreapp2.0\*.dll" target="lib\netcoreapp2.0" />
<file src="netcoreapp2.0\*.xml" target="lib\netcoreapp2.0" />

<!-- .NET Core 3.0 -->
<file src="netcoreapp3.0\*.dll" target="lib\netcoreapp3.0" />
<file src="netcoreapp3.0\*.xml" target="lib\netcoreapp3.0" />

<!-- .NET Framework 4.8 -->
<file src="net48\*.dll" target="lib\net48" />
<file src="net48\*.xml" target="lib\net48" />

<!-- .NET 7 -->
<file src="net7.0\*.dll" target="lib\net7.0" />
<file src="net7.0\*.xml" target="lib\net7.0" />

<!-- .NET 8 -->
<file src="net8.0\*.dll" target="lib\net8.0" />
<file src="net8.0\*.xml" target="lib\net8.0" />

<file src="..\..\..\..\README.md" target="docs\" />
</files>
</package>

0 comments on commit 7ccb572

Please sign in to comment.