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

FileExtender.csproj « FileExtender « Test - github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c40029f546aa17169f04cd2a25b4e1b4af9f6847 (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
56
57
58
59
60
<?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>
    <ProjectGuid>{A32AFFBA-4B83-4D6E-8CB3-812908BA14A9}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AssemblyName>FileExtender</AssemblyName>
    <SchemaVersion>2.0</SchemaVersion>
    <RootNamespace>FileExtender</RootNamespace>
    <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\extras</OutputPath>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>True</Optimize>
    <OutputPath>..\lib\extras</OutputPath>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
    <DebugSymbols>true</DebugSymbols>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\FileContentExtension\FileContentExtension.csproj">
    </ProjectReference>
    <ProjectReference Include="..\..\Mono.Addins\Mono.Addins.csproj">
    </ProjectReference>
    <ProjectReference Include="..\UnitTests\UnitTests.csproj">
      <Private>False</Private>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="FileExtender.addin.xml">
      <LogicalName>FileExtender.addin.xml</LogicalName>
    </EmbeddedResource>
    <EmbeddedResource Include="FileExtender.Bis.addin.xml">
      <LogicalName>FileExtender.Bis.addin.xml</LogicalName>
    </EmbeddedResource>
  </ItemGroup>
  <ItemGroup>
    <Content Include="ExtraExtender.addin.xml">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
</Project>