10 lines
264 B
Bash
Executable File
10 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# mocha-dotnet-new
|
|
# creates a new DotNet project and adds all the references needed to use
|
|
# Mocha from within .NET
|
|
|
|
dotnet new console
|
|
dotnet add reference /usr/lib/mocha/dotnet/Mocha.Core.dll
|
|
dotnet add reference /usr/lib/mocha/dotnet/MBS.Core.dll
|