Prig 0.0.0-alpha5

This is a prerelease version of Prig.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Prig --version 0.0.0-alpha5
NuGet\Install-Package Prig -Version 0.0.0-alpha5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Prig" Version="0.0.0-alpha5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Prig --version 0.0.0-alpha5
#r "nuget: Prig, 0.0.0-alpha5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Prig as a Cake Addin
#addin nuget:?package=Prig&version=0.0.0-alpha5&prerelease

// Install Prig as a Cake Tool
#tool nuget:?package=Prig&version=0.0.0-alpha5&prerelease

Prig(PRototyping jIG) is a framework that generates a Test Double like Microsoft Fakes/Typemock Isolator/Telerik JustMock based on Unmanaged Profiler APIs. This framework enables that any methods are replaced with mocks. For example, a static property, a private method, a non-virtual member and so on.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Prig:

Repository Stars
urasandesu/Prig
Prig is a lightweight framework for test indirections in .NET Framework.
Version Downloads Last updated
1.1.1 8,398 9/14/2015
1.1.0 1,666 12/31/2014
1.0.0 1,928 11/16/2014
0.0.0-alpha9 1,278 9/28/2014
0.0.0-alpha8 1,305 9/15/2014
0.0.0-alpha7 1,342 8/14/2014
0.0.0-alpha6 1,338 8/8/2014
0.0.0-alpha5 1,304 7/31/2014
0.0.0-alpha4 1,291 7/27/2014
0.0.0-alpha3 1,265 7/16/2014
0.0.0-alpha2 1,332 6/21/2014
0.0.0-alpha10 1,563 11/3/2014
0.0.0-alpha1 1,462 6/15/2014

Version 0.0.0-alpha5
* Pre-release 5.
* Fixed Issue #9: `Add-PrigAssembly -AssemblyFrom` went dead.
* Fixed Issue #10: `prig -p ConsoleApplication1.exe` went dead.
* Fixed Issue #11: In .NET 3.5, the assembly containing dynamic methods can't be called indirectly.


Version 0.0.0-alpha4
* Pre-release 4.
* Supported the feature to generate the stub for one runtime instance.
* [NOTICE] Changed the generated stub's API. It became a static method from a nested type. For example, until previous, the stub against `System.DateTime.Now` was `System.Prig.PDateTime.NowGet.Body`. From now, the stub becomes `System.Prig.PDateTime.NowGet().Body`. Because the previous version can't propagate an instance.
* Fixed Issue #6: Methods defined in `.exe` can't be called indirectly.
* Fixed Issue #7: Path to `tools` become unreachable from the Package Manager Console after building a project.
* Fixed Issue #8: Against the method that contains a nested type, indirection stub can't be created.


Version 0.0.0-alpha3
* Pre-release 3.
* Fixed Issue #3: Test is freezed when hijacking the method to add an event handler.
* Fixed Issue #4: Multiple Prig assemblies can't be added.
* Fixed Issue #5: Build was failed when adding Prig assembly for 3rd party library.


Version 0.0.0-alpha2
* Pre-release 2.
* In Add-PrigAssembly command, added the feature to enable that the full path to stubbing assembly is specified. This will allow that you can add Prig Assembly that is not registered to GAC.
* Added support for generating constraints of generic parameters automatically.
* Fixed Issue #1: BadImageFormatException occurred.
* Fixed Issue #2: Shall the name attribute be unique in the Stub Setting?


Version 0.0.0-alpha1
* Pre-release 1.
* Limited Support for NuGet.