forked from PrismLibrary/Prism
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1bdd4d
commit 782cf3c
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,6 +138,7 @@ publish/ | |
|
||
# NuGet | ||
.nuget/ | ||
nuget.exe | ||
*.nuget.props | ||
*.nuget.targets | ||
*.lock.json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>Prism.Autofac.Windows</id> | ||
<version>6.0.0-prerelease001</version> | ||
<title>Autofac for Prism 6 UWP</title> | ||
<authors>Brian Lagunas, Brian Noyes</authors> | ||
<owners>Brian Lagunas, Brian Noyes</owners> | ||
<licenseUrl>https://github.com/PrismLibrary/Prism/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>http://prismlibrary.com/</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Use these extensions to build Prism 6 Windows 10 UWP applications based on Autofac.</description> | ||
<summary>Autofac extensions for Prism 6 Windows 10 UWP.</summary> | ||
<releaseNotes></releaseNotes> | ||
<language /> | ||
<tags>prism mvvm uwp uap xaml autofac</tags> | ||
<dependencies> | ||
<group targetFramework="uap10.0"> | ||
<dependency id="Prism.Core" version="6.0.1" /> | ||
<dependency id="Prism.Windows" version="6.0.0-prerelease002" /> | ||
<dependency id="System.Diagnostics.Debug" version="4.0.10" /> | ||
<dependency id="CommonServiceLocator" version="1.3.0" /> | ||
<dependency id="System.Globalization" version="4.0.10" /> | ||
<dependency id="System.Runtime" version="4.0.20" /> | ||
<dependency id="System.Threading.Tasks" version="4.0.10" /> | ||
<dependency id="Autofac" version="3.5.2" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\Windows10\Prism.Autofac.Windows\bin\Release\Prism.Autofac.Windows.*" target="lib\uap10.0\" /> | ||
</files> | ||
</package> |