mirror of https://github.com/AMT-Cheif/Stylet.git
First attempt at a nuget package
This commit is contained in:
parent
c8f76a82dd
commit
9da35d85fb
|
@ -31,6 +31,7 @@ obj/
|
|||
|
||||
#NuGet
|
||||
packages/
|
||||
*.nupkg
|
||||
|
||||
#Installer
|
||||
installer/Output
|
||||
|
|
|
@ -7,7 +7,7 @@ using System.Windows.Markup;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Stylet")]
|
||||
[assembly: AssemblyDescription("This is the description")]
|
||||
[assembly: AssemblyDescription("A very lightweight but powerful ViewModel-First MVVM framework for WPF, inspired by Caliburn.Micro. Comes with its own IoC container.")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Antony Male")]
|
||||
[assembly: AssemblyProduct("Stylet")]
|
||||
|
@ -35,5 +35,5 @@ using System.Windows.Markup;
|
|||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
//[assembly: AssemblyVersion("1.0.0.0")]
|
||||
//[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>Stylet</id>
|
||||
<version>0.9.0-beta7</version>
|
||||
<title>Stylet</title>
|
||||
<authors>Antony Male</authors>
|
||||
<owners>Antony Male</owners>
|
||||
<licenseUrl>http://github.com/canton7/Stylet/blob/master/LICENSE.txt</licenseUrl>
|
||||
<projectUrl>http://github.com/canton7/Stylet</projectUrl>
|
||||
<iconUrl>https://raw.githubusercontent.com/canton7/Stylet/master/StyletIcon.png</iconUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>A very lightweight but powerful ViewModel-First MVVM framework for WPF, inspired by Caliburn.Micro. Comes with its own IoC container.</description>
|
||||
<copyright>Copyright 2014 Antony Male</copyright>
|
||||
<tags>WPF MVVM ViewModel Screen Conductor ViewModel-First Model-View-ViewModel UI</tags>
|
||||
</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"/>
|
||||
</files>
|
||||
</package>
|
Loading…
Reference in New Issue