Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Prism.Autofac.Forms.csproj « Prism.Autofac.Forms « Xamarin « Source - github.com/SunboX/Prism.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 310de875f25dd4f9aba8bb0261d9c6186c0488a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFrameworks>netstandard1.1;</TargetFrameworks>
    <AssemblyName>Prism.Autofac.Forms</AssemblyName>
    <PackageId>Prism.Autofac.Forms</PackageId>
    <Title>Autofac for Prism for Xamarin.Forms</Title>
    <NeutralLanguage>en-US</NeutralLanguage>
    <!-- Summary is not actually supported at this time. Including the summary for future support. -->
    <!--<Summary>Autofac extensions for Prism for Xamarin.Forms.</Summary>-->
    <Description>Use these extensions to build Xamarin.Forms applications with Prism and Autofac.</Description>
    <PackageTags>prism;xamarin;xamarin.forms;autofac;dependency injection</PackageTags>
    <Authors>Brian Lagunas;Brian Noyes</Authors>
    <Owners>Brian Lagunas;Brian Noyes</Owners>
    <PackageIconUrl>http://prismlibrary.github.io/images/prism-logo-graphic-128.png</PackageIconUrl>
    <PackageProjectUrl>https://github.com/PrismLibrary/Prism</PackageProjectUrl>
    <PackageLicenseUrl>https://github.com/PrismLibrary/Prism/blob/master/LICENSE</PackageLicenseUrl>
    <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
    <RepositoryType>git</RepositoryType>
    <RepositoryUrl>https://github.com/PrismLibrary/Prism</RepositoryUrl>
    <PackageOutputPath>../../Build</PackageOutputPath>
    <Version Condition=" '$(PRISM_RELEASE)' != '' ">$(PRISM_RELEASE)</Version>
    <!-- Update this version when incrementing Library Versions i.e. 7.1.0, 7.2.0 -->
    <VersionPrefix Condition=" '$(PRISM_RELEASE)' == '' ">7.0.0</VersionPrefix>
    <!-- This will create CI builds as 7.0.0-ci1234 -->
    <VersionSuffix Condition=" '$(PRISM_RELEASE)' == '' And '$(APPVEYOR_BUILD_NUMBER)' != '' ">ci$(APPVEYOR_BUILD_NUMBER)</VersionSuffix>
  </PropertyGroup>

  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Test|AnyCPU'">
    <DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
  </PropertyGroup>

  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
    <GenerateDocumentationFile>True</GenerateDocumentationFile>
    <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Autofac" Version="4.5.0" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="../Prism.Forms/Prism.Forms.csproj" />
  </ItemGroup>

</Project>