mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-10 07:42:47 -08:00
100 lines
4.6 KiB
XML
100 lines
4.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
|
|
<PropertyGroup>
|
|
<ProjectGuid>{92599C09-FF29-4ABD-B6E6-C48ECD781BAB}</ProjectGuid>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>GreenshotOfficePlugin</RootNamespace>
|
|
<AssemblyName>GreenshotOfficePlugin</AssemblyName>
|
|
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
|
|
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
|
|
<NoStdLib>False</NoStdLib>
|
|
<WarningLevel>4</WarningLevel>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<TargetFrameworkProfile />
|
|
<FileUpgradeFlags>
|
|
</FileUpgradeFlags>
|
|
<UpgradeBackupLocation>
|
|
</UpgradeBackupLocation>
|
|
<OldToolsVersion>3.5</OldToolsVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Platform)' == 'x86' ">
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<RegisterForComInterop>False</RegisterForComInterop>
|
|
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
|
<BaseAddress>4194304</BaseAddress>
|
|
<FileAlignment>4096</FileAlignment>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>Full</DebugType>
|
|
<Optimize>False</Optimize>
|
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<DebugType>None</DebugType>
|
|
<Optimize>True</Optimize>
|
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="log4net">
|
|
<HintPath>..\Greenshot\Lib\log4net.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Destinations\OutlookDestination.cs" />
|
|
<Compile Include="Destinations\ExcelDestination.cs" />
|
|
<Compile Include="Destinations\OneNoteDestination.cs" />
|
|
<Compile Include="Destinations\PowerpointDestination.cs" />
|
|
<Compile Include="Destinations\WordDestination.cs" />
|
|
<Compile Include="GlobalSuppressions.cs" />
|
|
<Compile Include="OfficeConfiguration.cs" />
|
|
<Compile Include="OfficePlugin.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="OfficeExport\ExcelExporter.cs" />
|
|
<Compile Include="OfficeExport\OneNoteExporter.cs" />
|
|
<Compile Include="OfficeExport\OutlookEmailExporter.cs" />
|
|
<Compile Include="OfficeExport\PowerpointExporter.cs" />
|
|
<Compile Include="OfficeExport\WordExporter.cs" />
|
|
<Compile Include="OfficeInterop\ExcelInterop.cs" />
|
|
<Compile Include="OfficeInterop\OfficeInterop.cs" />
|
|
<Compile Include="OfficeInterop\OneNoteInterop.cs" />
|
|
<Compile Include="OfficeInterop\OutlookInterop.cs" />
|
|
<Compile Include="OfficeInterop\OutlookUtils.cs" />
|
|
<Compile Include="OfficeInterop\PowerpointInterop.cs" />
|
|
<Compile Include="OfficeInterop\WordInterop.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GreenshotPlugin\GreenshotPlugin.csproj">
|
|
<Project>{5B924697-4DCD-4F98-85F1-105CB84B7341}</Project>
|
|
<Name>GreenshotPlugin</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup />
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
|
|
<PropertyGroup>
|
|
<PostBuildEvent>mkdir "$(SolutionDir)Greenshot\bin\$(Configuration)\Plugins\$(ProjectName)"
|
|
copy "$(ProjectDir)bin\$(Configuration)\$(ProjectName).pdb" "$(SolutionDir)Greenshot\bin\$(Configuration)\Plugins\$(ProjectName)\"
|
|
copy "$(ProjectDir)bin\$(Configuration)\$(TargetFileName)" "$(SolutionDir)Greenshot\bin\$(Configuration)\Plugins\$(ProjectName)\*.gsp"
|
|
</PostBuildEvent>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<RegisterForComInterop>False</RegisterForComInterop>
|
|
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
|
<BaseAddress>4194304</BaseAddress>
|
|
<FileAlignment>4096</FileAlignment>
|
|
</PropertyGroup>
|
|
</Project> |