Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gigas002 committed Sep 8, 2019
1 parent ed97f22 commit 5da4b72
Show file tree
Hide file tree
Showing 6 changed files with 260 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Demo/Demo.csproj
Expand Up @@ -4,8 +4,8 @@
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<UseWPF>true</UseWPF>
<AssemblyVersion>1.0.0.112</AssemblyVersion>
<FileVersion>1.0.0.112</FileVersion>
<AssemblyVersion>1.0.0.114</AssemblyVersion>
<FileVersion>1.0.0.114</FileVersion>
<Platforms>AnyCPU;x64</Platforms>
<ApplicationIcon>Icon\icon.ico</ApplicationIcon>
</PropertyGroup>
Expand Down
26 changes: 26 additions & 0 deletions MaterialMessageBox-x64.nuspec
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>MaterialMessageBox-x64</id>
<version>1.0.0</version>
<title>MaterialMessageBox-x64</title>
<authors>Gigas002</authors>
<owners>Gigas002</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>http://www.wtfpl.net/</licenseUrl>
<projectUrl>https://github.com/Gigas002/MaterialMessageBox</projectUrl>
<description>Material Message Box for WPF apps.</description>
<copyright>Gigas002</copyright>
<tags>wpf messagebox materialdesign material-ui desktop</tags>
<dependencies>
<group targetFramework=".NETCoreApp3.0">
<dependency id="MaterialDesignThemes" version="3.0.0-ci534" />
<dependency id="MaterialDesignColors" version="1.2.1-ci534" />
</group>
</dependencies>
</metadata>
<files>
<file src="MaterialMessageBox\bin\x64\Release\netcoreapp3.0\MaterialMessageBox.dll" target="lib\NETCoreApp3.0\MaterialMessageBox.dll" />
<file src="MaterialMessageBox\bin\x64\Release\netcoreapp3.0\MaterialMessageBox.xml" target="lib\NETCoreApp3.0\MaterialMessageBox.xml" />
</files>
</package>
8 changes: 4 additions & 4 deletions MaterialMessageBox.nuspec → MaterialMessageBox-x86.nuspec
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>MaterialMessageBox</id>
<id>MaterialMessageBox-x86</id>
<version>1.0.0</version>
<title>MaterialMessageBox x86</title>
<title>MaterialMessageBox-x86</title>
<authors>Gigas002</authors>
<owners>Gigas002</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand All @@ -20,7 +20,7 @@
</dependencies>
</metadata>
<files>
<file src="MaterialMessageBox\bin\Release\MaterialMessageBox.dll" target="lib\NETCoreApp3.0\MaterialMessageBox.dll" />
<file src="MaterialMessageBox\bin\Release\MaterialMessageBox.xml" target="lib\NETCoreApp3.0\MaterialMessageBox.xml" />
<file src="MaterialMessageBox\bin\Release\netcoreapp3.0\MaterialMessageBox.dll" target="lib\NETCoreApp3.0\MaterialMessageBox.dll" />
<file src="MaterialMessageBox\bin\Release\netcoreapp3.0\MaterialMessageBox.xml" target="lib\NETCoreApp3.0\MaterialMessageBox.xml" />
</files>
</package>
12 changes: 10 additions & 2 deletions MaterialMessageBox/MaterialMessageBox.csproj
Expand Up @@ -4,12 +4,20 @@
<TargetFramework>netcoreapp3.0</TargetFramework>
<UseWPF>true</UseWPF>
<LangVersion>preview</LangVersion>
<AssemblyVersion>1.0.0.72</AssemblyVersion>
<FileVersion>1.0.0.72</FileVersion>
<AssemblyVersion>1.0.0.74</AssemblyVersion>
<FileVersion>1.0.0.74</FileVersion>
<Platforms>AnyCPU;x64</Platforms>
<ApplicationIcon></ApplicationIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>C:\Users\gigas\Documents\Visual Studio 2019\Projects\MaterialMessageBox\MaterialMessageBox\MaterialMessageBox.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DocumentationFile>C:\Users\gigas\Documents\Visual Studio 2019\Projects\MaterialMessageBox\MaterialMessageBox\MaterialMessageBox.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MaterialDesignColors" Version="1.2.1-ci534" />
<PackageReference Include="MaterialDesignThemes" Version="3.0.0-ci534" />
Expand Down
213 changes: 213 additions & 0 deletions MaterialMessageBox/MaterialMessageBox.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion README.md
Expand Up @@ -12,7 +12,11 @@ You can build project in **VS2019** (**16.2.4**+) or in **VSCode** (**1.38.0**+)

## Current version

[![Release](https://img.shields.io/github/release/Gigas002/MaterialMessageBox.svg)](https://github.com/Gigas002/MaterialMessageBox/releases/latest), or on NuGet: *todo*.
[![Release](https://img.shields.io/github/release/Gigas002/MaterialMessageBox.svg)](https://github.com/Gigas002/MaterialMessageBox/releases/latest), or on NuGet:

[![NuGet](https://img.shields.io/nuget/v/MaterialMessageBox-x86.svg)](https://www.nuget.org/packages/MaterialMessageBox-x86/)

[![NuGet](https://img.shields.io/nuget/v/MaterialMessageBox-x64.svg)](https://www.nuget.org/packages/MaterialMessageBox-x64/)

Information about changes since previous releases can be found in [changelog](https://github.com/Gigas002/MaterialMessageBox/blob/master/CHANGELOG.md). This project supports [SemVer 2.0.0](https://semver.org/) (template is `{MAJOR}.{MINOR}.{PATCH}.{BUILD}`).

Expand Down

0 comments on commit 5da4b72

Please sign in to comment.