mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-25 06:32:49 -08:00
55 lines
2.3 KiB
XML
55 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="..\CommonProject.properties" />
|
|
<PropertyGroup>
|
|
<ProjectGuid>{6BD38118-B27F-43A1-951C-FB6464D39260}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>PluginExample</RootNamespace>
|
|
<AssemblyName>PluginExample</AssemblyName>
|
|
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<NoStdLib>False</NoStdLib>
|
|
<WarningLevel>4</WarningLevel>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<TargetFrameworkProfile />
|
|
</PropertyGroup>
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
|
|
<ItemGroup>
|
|
<Reference Include="log4net">
|
|
<HintPath>..\Greenshot\Lib\log4net.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="ExampleForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="GreyscaleProcessor.cs" />
|
|
<Compile Include="PluginExampleConfiguration.cs" />
|
|
<Compile Include="SimpleOutputDestination.cs" />
|
|
<Compile Include="AnnotateProcessor.cs" />
|
|
<Compile Include="PluginExample.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="SettingsForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="SettingsForm.Designer.cs">
|
|
<DependentUpon>SettingsForm.cs</DependentUpon>
|
|
</Compile>
|
|
<None Include="Properties\AssemblyInfo.cs.template" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GreenshotPlugin\GreenshotPlugin.csproj">
|
|
<Project>{5B924697-4DCD-4F98-85F1-105CB84B7341}</Project>
|
|
<Name>GreenshotPlugin</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<PostBuildEvent>mkdir "$(SolutionDir)bin\$(Configuration)\Plugins\$(ProjectName)"
|
|
copy "$(ProjectDir)bin\$(Configuration)\$(TargetFileName)" "$(SolutionDir)bin\$(Configuration)\Plugins\$(ProjectName)\*.gsp"</PostBuildEvent>
|
|
</PropertyGroup>
|
|
</Project> |