mirror of https://github.com/AMT-Cheif/Stylet.git
Tweak nuspcs and README
This commit is contained in:
parent
385452170f
commit
a4428f6436
|
@ -8,9 +8,9 @@
|
|||
<owners>Antony Male</owners>
|
||||
<license type="expression">MIT</license>
|
||||
<projectUrl>http://github.com/canton7/Stylet</projectUrl>
|
||||
<iconUrl>https://raw.githubusercontent.com/canton7/Stylet/master/StyletIcon.png</iconUrl>
|
||||
<icon>StyletIcon.png</icon>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>A quick startup project for Stylet (.NET Framework ONLY!)</description>
|
||||
<description>.NET Framework: A quick startup project for Stylet, the lightweight but powerful ViewModel-First MVVM framework for WPF</description>
|
||||
<copyright>Copyright 2015 Antony Male</copyright>
|
||||
<tags>Stylet WPF MVVM ViewModel Screen Conductor ViewModel-First Model-View-ViewModel UI</tags>
|
||||
|
||||
|
@ -24,5 +24,6 @@
|
|||
<files>
|
||||
<file src="start\tools\**" target="tools" />
|
||||
<file src="readme.txt" target=""/>
|
||||
<file src="..\StyletIcon.png" target="\"/>
|
||||
</files>
|
||||
</package>
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>Stylet</id>
|
||||
<version>0.0.0</version>
|
||||
<title>Stylet</title>
|
||||
<authors>Antony Male</authors>
|
||||
<owners>Antony Male</owners>
|
||||
<license type="expression">MIT</license>
|
||||
<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="..\Stylet\bin\Release\net45\Stylet.dll" target="lib\net45"/>
|
||||
<file src="..\Stylet\bin\Stylet.xml" target="lib\net45"/>
|
||||
<file src="..\Stylet\bin\Release\netcoreapp3.0\Stylet.dll" target="lib\netcoreapp3.0"/>
|
||||
<file src="..\Stylet\bin\Stylet.xml" target="lib\netcoreapp3.0"/>
|
||||
<file src="readme.txt" target=""/>
|
||||
</files>
|
||||
</package>
|
18
README.md
18
README.md
|
@ -34,7 +34,23 @@ Stylet requires .NET 4.5 (Visual Studio 2012 or higher).
|
|||
|
||||
### .NET Core
|
||||
|
||||
For .NET Core projects, install the [Stylet](https://www.nuget.org/packages/Stylet) package, then follow the instructions in the [Quick Start](https://github.com/canton7/Stylet/wiki/Quick-Start).
|
||||
For .NET Core projects, the quickest way to get started is by using `dotnet new` with Stylet's template.
|
||||
|
||||
Open a command window where you want to create your new project, and install the Stylet templates using:
|
||||
|
||||
```
|
||||
dotnet new -i Stylet.Templates
|
||||
```
|
||||
|
||||
Then create a new project with:
|
||||
|
||||
```
|
||||
dotnet new stylet -o MyStyletProject`
|
||||
```
|
||||
|
||||
(changing `MyStyletProject` as appropriate).
|
||||
|
||||
If you want to set up your project manually, install the [Stylet](https://www.nuget.org/packages/Stylet) package, then follow the instructions in the [Quick Start](https://github.com/canton7/Stylet/wiki/Quick-Start).
|
||||
|
||||
Stylet requires .NET Core 3.0.
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<PackageId>Stylet</PackageId>
|
||||
<PackageTags>WPF;MVVM;ViewModel;Screen Conductor;ViewModel-First;Model-View-ViewModel;UI</PackageTags>
|
||||
<Copyright>Copyright © 2014 Antony Male</Copyright>
|
||||
<PackageIconUrl>https://raw.githubusercontent.com/canton7/Stylet/master/StyletIcon.png</PackageIconUrl>
|
||||
<PackageIcon>StyletIcon.png</PackageIcon>
|
||||
<PackageProjectUrl>http://github.com/canton7/Stylet</PackageProjectUrl>
|
||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
|
@ -43,10 +43,10 @@
|
|||
<Compile Include="**\*.cs" Exclude="obj\**" />
|
||||
<None Remove="**\*.cs" />
|
||||
|
||||
<None Include="Settings.StyleCop" Link="Settings.StyleCop" />
|
||||
<None Include="Stylet.ruleset" Link="Stylet.ruleset" />
|
||||
|
||||
<None Include="..\NuGet\readme.txt" pack="true" PackagePath="." />
|
||||
<None Include="Settings.StyleCop" />
|
||||
<None Include="Stylet.ruleset" />
|
||||
<None Include="..\StyletIcon.png" Pack="true" PackagePath="\" />
|
||||
<None Include="..\NuGet\readme.txt" Pack="true" PackagePath="." />
|
||||
|
||||
<Page Include="MessageBoxView.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
|
|
|
@ -12,17 +12,18 @@
|
|||
<PackageId>Stylet.Templates</PackageId>
|
||||
<PackageTags>dotnet-new;templates;WPF;MVVM;ViewModel;Screen;Conductor;ViewModel-First;Model-View-ViewModel;UI</PackageTags>
|
||||
<Copyright>Copyright © 2019 Antony Male</Copyright>
|
||||
<PackageIconUrl>https://raw.githubusercontent.com/canton7/Stylet/master/StyletIcon.png</PackageIconUrl>
|
||||
<PackageIcon>StyletIcon.png</PackageIcon>
|
||||
<PackageProjectUrl>http://github.com/canton7/Stylet</PackageProjectUrl>
|
||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<RepositoryUrl>https://github.com/canton7/Stylet</RepositoryUrl>
|
||||
<Authors>Antony Male</Authors>
|
||||
<Description>.NET Core templates for Stylet, the lightweight but powerful ViewModel-First MVVM framework for WPF,</Description>
|
||||
<Description>.NET Core templates for Stylet, the lightweight but powerful ViewModel-First MVVM framework for WPF</Description>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
|
||||
<Compile Remove="**\*" />
|
||||
<None Include="..\StyletIcon.png" Pack="true" PackagePath="\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
Loading…
Reference in New Issue