Add a readme which is added by NuGet

This commit is contained in:
Antony Male 2014-04-22 12:40:13 +01:00
parent f538c55391
commit 8b177386d1
4 changed files with 17 additions and 4 deletions

BIN
NuGet/NuGet.exe Normal file

Binary file not shown.

View File

@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>Stylet</id>
<version>0.9.0-beta7</version>
<version>0.9.0-beta8</version>
<title>Stylet</title>
<authors>Antony Male</authors>
<owners>Antony Male</owners>
@ -16,8 +16,10 @@
</metadata>
<files>
<file src="bin\Release\Stylet.dll" target="lib\net45"/>
<file src="bin\Release\Stylet.pdb" target="lib\net45"/>
<file src="**\*.cs" target="src"/>
<file src="..\Stylet\bin\Release\Stylet.dll" target="lib\net45"/>
<file src="..\Stylet\bin\Release\Stylet.pdb" target="lib\net45"/>
<file src="..\Stylet\**\*.cs" target="src"/>
<file src="tools\**.*" target="tools"/>
<file src="content\**.*" target="content"/>
</files>
</package>

View File

@ -0,0 +1,3 @@
Welcome to Stylet! Stylet is a small but powerful MVVM framework, which supports a ViewModel-First approach.
Please read the documentation at https://github.com/canton7/Stylet/wiki

8
NuGet/tools/install.ps1 Normal file
View File

@ -0,0 +1,8 @@
param($installPath, $toolsPath, $package, $project)
Write-Host "Hello"
Write-Host $project.FullName
$path = [System.IO.Path]
$readmefile = $path::Combine($path::GetDirectoryName($project.FullName), "StyletReadme.txt")
$DTE.ItemOperations.OpenFile($readmefile)