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

MultiAssemblyAddin.csproj « MultiAssemblyAddin « Test - github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba75db453acd4f3f9502d4003f41ed4905a5bfd1 (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
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
  <Import Project="..\..\TargetFrameworks.props" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.30703</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{8C374D09-E916-4C6C-A01B-43A06A0D0499}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>MultiAssemblyAddin</RootNamespace>
    <AssemblyName>MultiAssemblyAddin</AssemblyName>
    <AssemblyVersion>0.0.0.0</AssemblyVersion>
    <TargetFrameworks>$(DotNetCoreTarget)</TargetFrameworks>
    <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>True</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>False</Optimize>
    <OutputPath>..\lib</OutputPath>
    <DefineConstants>DEBUG</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <ConsolePause>False</ConsolePause>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>..\lib</OutputPath>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <ConsolePause>False</ConsolePause>
    <DebugSymbols>true</DebugSymbols>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
  </ItemGroup>
  <ItemGroup>
    <None Remove="OptionalModule\**" />
    <None Remove="SecondAssembly\**" />
    <Compile Remove="OptionalModule\**" />
    <Compile Remove="SecondAssembly\**" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\Mono.Addins\Mono.Addins.csproj">
      <Private>False</Private>
    </ProjectReference>
    <ProjectReference Include="..\UnitTests\UnitTests.csproj">
      <Private>False</Private>
    </ProjectReference>
    <ProjectReference Include="SecondAssembly\SecondAssembly.csproj">
    </ProjectReference>
  </ItemGroup>
</Project>