Skip to content

Commit

Permalink
Added frameworks.
Browse files Browse the repository at this point in the history
  • Loading branch information
V4SS3UR committed Aug 29, 2024
1 parent 1e8629a commit a31fb73
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 22 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ ToastManager is a simple C# library for displaying customizable toast notificati

## Installation

Include it manually in your project.
Install the [ToastManager.WPF NuGet package](https://www.nuget.org/packages/ToastManager.WPF/) :
```
Install-Package ToastManager.WPF
```

### Usage

Expand Down
3 changes: 2 additions & 1 deletion TestApplication/MVVM/View/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
</Border>
</UniformGrid>
</DockPanel>


<Border Background="White"/>

<toast:Toast ToastName="MainWindowToast" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>

Expand Down
49 changes: 29 additions & 20 deletions ToastManager/ToastManager.csproj
Original file line number Diff line number Diff line change
@@ -1,28 +1,37 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0-windows;net461</TargetFrameworks>
<TargetFrameworks>net462;net47;net48;net5.0-windows;net6.0-windows</TargetFrameworks>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<Version>$(AssemblyVersion)</Version>
<UseWPF>true</UseWPF>
<SignAssembly>False</SignAssembly>
<Version>1.0.0.0</Version>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>False</AutoGenerateBindingRedirects>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-windows|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net461|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-windows|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net461|AnyCPU'">
<DebugType>none</DebugType>
<PackageId>$(AssemblyName).WPF</PackageId>
<Title>$(AssemblyName).WPF</Title>
<Authors>V4SS3UR</Authors>
<Product>$(AssemblyName).WPF</Product>
<Copyright>V4SS3UR</Copyright>
<Description>ToastManager is a lightweight C# library for displaying toast messages in desktop applications built with WPF.</Description>
<PackageProjectUrl>https://github.com/V4SS3UR/ToastManager.WPF</PackageProjectUrl>
<RepositoryUrl>https://github.com/V4SS3UR/ToastManager.WPF</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>notifications;library;tools;wpf;overlay;toast;toast-notifications</PackageTags>
<PackageLicenseExpression> BSD-3-Clause</PackageLicenseExpression>
<SignAssembly>False</SignAssembly>
</PropertyGroup>

<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit a31fb73

Please sign in to comment.