forked from FantasticFiasco/mvvm-dialogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MvvmDialogs.nuspec
46 lines (43 loc) · 2.62 KB
/
MvvmDialogs.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>MvvmDialogs</id>
<version>$version$</version>
<authors>Mattias Kindborg</authors>
<title>MVVM Dialogs</title>
<language>en-US</language>
<license type="expression">Apache-2.0</license>
<projectUrl>https://github.com/FantasticFiasco/mvvm-dialogs</projectUrl>
<icon>images\icon_64x64.png</icon>
<copyright>Copyright © 2009-2022 MVVM Dialogs contributors</copyright>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Framework simplifying the concept of opening dialogs from a view model when using MVVM in WPF or UWP.</description>
<releaseNotes>For release notes, please see the change log on GitHub.</releaseNotes>
<tags>wpf uwp mvvm dialog window messagebox openfiledialog savefiledialog folderbrowserdialog messagedialog contentdialog fileopenpicker filesavepicker folderpicker</tags>
<dependencies>
<group targetFramework=".NETFramework4.6.1" />
<group targetFramework=".NETCoreApp3.1" />
<group targetFramework="net5.0-windows7.0" />
<group targetFramework="UAP10.0" />
</dependencies>
</metadata>
<files>
<!-- .NET Framework -->
<file src="src\net\bin\Release\net461\MvvmDialogs.dll" target="lib\net461\MvvmDialogs.dll" />
<file src="src\net\bin\Release\net461\MvvmDialogs.xml" target="lib\net461\MvvmDialogs.xml" />
<file src="src\net\bin\Release\net461\MvvmDialogs.pdb" target="lib\net461\MvvmDialogs.pdb" />
<!-- .NET Core -->
<file src="src\net\bin\Release\netcoreapp3.1\MvvmDialogs.dll" target="lib\netcoreapp3.1\MvvmDialogs.dll" />
<file src="src\net\bin\Release\netcoreapp3.1\MvvmDialogs.xml" target="lib\netcoreapp3.1\MvvmDialogs.xml" />
<file src="src\net\bin\Release\netcoreapp3.1\MvvmDialogs.pdb" target="lib\netcoreapp3.1\MvvmDialogs.pdb" />
<file src="src\net\bin\Release\net5.0-windows\MvvmDialogs.dll" target="lib\net5.0-windows7.0\MvvmDialogs.dll" />
<file src="src\net\bin\Release\net5.0-windows\MvvmDialogs.xml" target="lib\net5.0-windows7.0\MvvmDialogs.xml" />
<file src="src\net\bin\Release\net5.0-windows\MvvmDialogs.pdb" target="lib\net5.0-windows7.0\MvvmDialogs.pdb" />
<!-- UWP -->
<file src="src\universal\bin\Release\MvvmDialogs.dll" target="lib\uap10.0\MvvmDialogs.dll" />
<file src="src\universal\bin\Release\MvvmDialogs.xml" target="lib\uap10.0\MvvmDialogs.xml" />
<file src="src\universal\bin\Release\MvvmDialogs.pdb" target="lib\uap10.0\MvvmDialogs.pdb" />
<!-- Icon -->
<file src="build\icon_64x64.png" target="images\" />
</files>
</package>