Skip to content

Commit

Permalink
Completed NuGet package information
Browse files Browse the repository at this point in the history
  • Loading branch information
mysteryx93 committed May 10, 2022
1 parent a99b603 commit 1bc71a0
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 34 deletions.
45 changes: 45 additions & 0 deletions src/MvvmDialogs.Avalonia/MvvmDialogs - Backup.Avalonia.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>default</LangVersion>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<AssemblyTitle>MVVM Dialogs for Avalonia</AssemblyTitle>
<Title>MVVM Dialogs for Avalonia</Title>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\StrongName.snk</AssemblyOriginatorKeyFile>
<AssemblyVersion>1.0.0</AssemblyVersion>
<Copyright>Copyright © 2009-2022 MVVM Dialogs contributors</Copyright>
<Product>HanumanInstitute.MvvmDialogs</Product>
<PackageId>HanumanInstitute.MvvmDialogs.Avalonia</PackageId>
<AssemblyName>HanumanInstitute.MvvmDialogs.Avalonia</AssemblyName>
<RootNamespace>HanumanInstitute.MvvmDialogs.Avalonia</RootNamespace>
<Company>Hanuman Institute</Company>
<Authors>Etienne Charland</Authors>
<NeutralLanguage>en-US</NeutralLanguage>
<RepositoryUrl>https://github.com/mysteryx93/HanumanInstitute.MvvmDialogs</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<Description>Library simplifying the concept of opening dialogs from a view model when using MVVM in Avalonia</Description>
<PackageTags>wpf avalonia mvvm dialog window messagebox openfiledialog savefiledialog folderbrowserdialog messagedialog contentdialog fileopenpicker filesavepicker folderpicker</PackageTags>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\MvvmDialogs\MvvmDialogs.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\StrongName.snk">
<Link>StrongName.snk</Link>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.14" />
<PackageReference Include="MessageBox.Avalonia" Version="2.0.0" />
</ItemGroup>

</Project>
8 changes: 8 additions & 0 deletions src/MvvmDialogs.Avalonia/MvvmDialogs.Avalonia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<AssemblyTitle>MVVM Dialogs for Avalonia</AssemblyTitle>
<Title>MVVM Dialogs for Avalonia</Title>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\StrongName.snk</AssemblyOriginatorKeyFile>
<AssemblyVersion>1.0.0</AssemblyVersion>
Expand All @@ -20,15 +21,22 @@
<NeutralLanguage>en-US</NeutralLanguage>
<RepositoryUrl>https://github.com/mysteryx93/HanumanInstitute.MvvmDialogs</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<Description>Library simplifying the concept of opening dialogs from a view model when using MVVM in Avalonia</Description>
<PackageTags>wpf avalonia mvvm dialog window messagebox openfiledialog savefiledialog folderbrowserdialog messagedialog contentdialog fileopenpicker filesavepicker folderpicker</PackageTags>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageIcon>icon_64x64.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\MvvmDialogs\MvvmDialogs.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\build\icon_64x64.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\StrongName.snk">
<Link>StrongName.snk</Link>
</None>
Expand Down
12 changes: 10 additions & 2 deletions src/MvvmDialogs.Wpf/MvvmDialogs.Wpf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<AssemblyTitle>MVVM Dialogs for WPF</AssemblyTitle>
<Title>MVVM Dialogs for WPF</Title>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\StrongName.snk</AssemblyOriginatorKeyFile>
<AssemblyVersion>1.0.0</AssemblyVersion>
Expand All @@ -20,17 +21,24 @@
<NeutralLanguage>en-US</NeutralLanguage>
<RepositoryUrl>https://github.com/mysteryx93/HanumanInstitute.MvvmDialogs</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Description>Library simplifying the concept of opening dialogs from a view model when using MVVM in WPF</Description>
<PackageTags>wpf avalonia mvvm dialog window messagebox openfiledialog savefiledialog folderbrowserdialog messagedialog contentdialog fileopenpicker filesavepicker folderpicker</PackageTags>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<PackageIcon>icon_64x64.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\MvvmDialogs\MvvmDialogs.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\build\icon_64x64.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\StrongName.snk">
<Link>StrongName.snk</Link>
</None>
Expand Down
13 changes: 8 additions & 5 deletions src/MvvmDialogs/MvvmDialogs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<AssemblyTitle>MVVM Dialogs</AssemblyTitle>
<Title>MVVM Dialogs</Title>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\StrongName.snk</AssemblyOriginatorKeyFile>
<AssemblyVersion>1.0.0</AssemblyVersion>
Expand All @@ -20,21 +21,23 @@
<NeutralLanguage>en-US</NeutralLanguage>
<RepositoryUrl>https://github.com/mysteryx93/HanumanInstitute.MvvmDialogs</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<Description>Library simplifying the concept of opening dialogs from a view model when using MVVM</Description>
<PackageTags>wpf avalonia mvvm dialog window messagebox openfiledialog savefiledialog folderbrowserdialog messagedialog contentdialog fileopenpicker filesavepicker folderpicker</PackageTags>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageIcon>icon_64x64.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Runtime" Version="4.3.1" />
<PackageReference Include="System.Runtime.InteropServices" Version="4.3.0" />
</ItemGroup>


<!--<ItemGroup>
<InternalsVisibleTo Include="MvvmDialogs.Tests" PublicKey="a6493f7449d95f27" />
</ItemGroup>-->

<ItemGroup>
<None Include="..\..\build\icon_64x64.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\StrongName.snk">
<Link>StrongName.snk</Link>
</None>
Expand Down
27 changes: 0 additions & 27 deletions src/MvvmDialogs/Properties/AssemblyInfo.cs

This file was deleted.

0 comments on commit 1bc71a0

Please sign in to comment.