Skip to content
This repository was archived by the owner on Mar 8, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions TaskDialogLib.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>TaskDialogLib</id>
<version>1.1.0.0</version>
<title>TaskDialogLib</title>
<authors>Florian Schneidereit</authors>
<owners>Flatcode.net</owners>
<licenseUrl>http://opensource.org/licenses/LGPL-2.1</licenseUrl>
<projectUrl>http://github.com/flatcode/TaskDialogLib</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>The TaskDialogLib is a thin wrapper library of the native Task Dialog Common Control introduced in Windows Vista for the .NET Framework and Windows Presentation Foundation. It allows you to declare task dialogs in XAML and define their logic in code-behind, including support for data binding with dependency properties.</description>
<summary>A free and open source library for XAML-based Task Dialogs.</summary>
<releaseNotes>Ownership changed: TaskDialogLib is now being maintained by flatcode. Please note that in the course of this the XAML namespace changed from "http://github.com/sevenacids/TaskDialogLib" to "http://schemas.flatcode.net/2014/presentation".

For a quick walkthrough how to use this library, see the CodeProject article: http://www.codeproject.com/Articles/751921/Introducing-TaskDialogLib-Task-Dialogs-in-XAML</releaseNotes>
<copyright>Copyright � 2014 Flatcode.net.</copyright>
<frameworkAssemblies>
<frameworkAssembly assemblyName="PresentationCore" targetFramework=".NETFramework4.0" />
<frameworkAssembly assemblyName="PresentationFramework" targetFramework=".NETFramework4.0" />
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.0" />
<frameworkAssembly assemblyName="System.Xaml" targetFramework=".NETFramework4.0" />
<frameworkAssembly assemblyName="WindowsBase" targetFramework=".NETFramework4.0" />
</frameworkAssemblies>
</metadata>
<files>
<file src="bin\Release\TaskDialogLib.dll" target="lib\net40\TaskDialogLib.dll" />
</files>
</package>
12 changes: 10 additions & 2 deletions TaskDialogLib.sln
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30110.0
# Visual Studio 15
VisualStudioVersion = 15.0.27617.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TaskDialogLib", "src\TaskDialogLib\TaskDialogLib.csproj", "{AFFBF61B-EA2F-4FC1-A40D-EE552246ADFB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TaskDialogLibTest", "src\TaskDialogLibTest\TaskDialogLibTest.csproj", "{4EEAE5DC-CCCF-46E1-A357-297D4159A2C0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NuGet", "NuGet", "{4B1E65E5-F2C6-40CC-A086-F9A777CA3649}"
ProjectSection(SolutionItems) = preProject
TaskDialogLib.nuspec = TaskDialogLib.nuspec
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -25,4 +30,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {AE7BD9B4-D0FB-4272-BC36-91CDC57C74D2}
EndGlobalSection
EndGlobal
Loading