Skip to content

Commit

Permalink
updating NuGet info
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Nov 11, 2019
1 parent ed17c14 commit 2a5e103
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Directory.build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<Authors>Dan Siegel</Authors>
<Authors>dansiegel</Authors>
<Copyright>© Dan Siegel. All rights reserved.</Copyright>
<VersionPrefix>7.2.0</VersionPrefix>
<NeutralLanguage>en-US</NeutralLanguage>
Expand All @@ -13,7 +13,7 @@
<PackageProjectUrl>https://github.com/dansiegel/Prism.Container.Extensions</PackageProjectUrl>
<RepositoryUrl>https://github.com/dansiegel/Prism.Container.Extensions.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseUrl>https://github.com/dansiegel/Prism.Container.Extensions/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>prism di dryioc</PackageTags>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>Prism Container Extension Abstractions</Description>
<PackageTags>prism di extensions</PackageTags>

</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<Description>Provides an extended PrismApplication with additional helpers. This can assist with capturing errors and debugging. Additional helpers exist to provide better use of Platform Specifics and styling.</Description>
<PackageTags>prism di dryioc xamarin.forms</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/Prism.Forms.Extended/Prism.Forms.Extended.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<TargetFrameworks>netstandard2.0;MonoAndroid80;MonoAndroid81;MonoAndroid90;Xamarin.iOS10</TargetFrameworks>
<Description>Provides an extended PrismApplication with additional helpers. This can assist with capturing errors and debugging. Additional helpers exist to provide better use of Platform Specifics and styling.</Description>
<AndroidUseIntermediateDesignerFile>False</AndroidUseIntermediateDesignerFile>
<PackageTags>prism xamarin.forms forms extensions</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using System;
using System.Runtime.CompilerServices;
using Microsoft.Extensions.DependencyInjection;
using Prism.Ioc;

[assembly: InternalsVisibleTo("Prism.Microsoft.DependencyInjection.Extensions.Tests")]
[assembly: InternalsVisibleTo("Prism.Microsoft.DependencyInjection.Forms.Extended.Tests")]
[assembly: InternalsVisibleTo("Shiny.Prism.Tests")]
namespace Prism.Microsoft.DependencyInjection
{
public static class MicrsoftDependencyInjectionExtensions
{
public static IServiceCollection ServiceCollection(this IContainerRegistry containerRegistry)
{
if(containerRegistry is PrismContainerExtension pce)
{
return pce.Services;
}

throw new NotImplementedException("IContainerRegistry must be implmented from the concrete type PrismContainerExtension");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<!-- TODO: This needs to be in preview until it has some usage -->
<VersionSuffix Condition=" $(IS_RELEASE) ">pre</VersionSuffix>
<PackageTags>prism di iserviceprovider iservicecollection microsoft-dependencyinjection</PackageTags>
<Authors>dansiegel</Authors>
<Description>Prism Container Extensions for the Microsoft.Extensions.DependencyInjection implementations of IServiceCollection / IServiceProvider</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<!-- TODO: This needs to be in preview until it has some usage -->
<VersionSuffix Condition=" $(IS_RELEASE) ">pre</VersionSuffix>
<Description>Provides an extended PrismApplication with additional helpers. This can assist with capturing errors and debugging. Additional helpers exist to provide better use of Platform Specifics and styling.</Description>
<PackageTags>prism di microsoft-dependencyinjection xamarin.forms</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>Provides an extended PrismApplication with additional helpers. This can assist with capturing errors and debugging. Additional helpers exist to provide better use of Platform Specifics and styling.</Description>
<PackageTags>prism di unity xamarin.forms</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/Shiny.Prism/Shiny.Prism.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<!-- TODO: Remove this Conditional Suffix when Shiny goes stable -->
<VersionSuffix Condition=" $(IS_RELEASE) ">pre</VersionSuffix>
<LangVersion>8.0</LangVersion>
<PackageTags>prism shiny background</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 2a5e103

Please sign in to comment.