mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-10 07:42:47 -08:00
85 lines
3.7 KiB
XML
85 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="..\CommonProject.properties" />
|
|
<PropertyGroup>
|
|
<ProjectGuid>{7EC72A5A-D73A-4B4B-9CA1-2216C7D92D5E}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>GreenshotFlickrPlugin</RootNamespace>
|
|
<AssemblyName>GreenshotFlickrPlugin</AssemblyName>
|
|
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
|
|
<NoStdLib>False</NoStdLib>
|
|
<WarningLevel>4</WarningLevel>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<RunPostBuildEvent>Always</RunPostBuildEvent>
|
|
<OldToolsVersion>3.5</OldToolsVersion>
|
|
<TargetFrameworkProfile />
|
|
<FileUpgradeFlags>
|
|
</FileUpgradeFlags>
|
|
<UpgradeBackupLocation>
|
|
</UpgradeBackupLocation>
|
|
</PropertyGroup>
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
|
|
<ItemGroup>
|
|
<Reference Include="log4net">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<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="FlickrCredentials.cs" />
|
|
<Compile Include="FlickrDestination.cs" />
|
|
<Compile Include="Forms\FlickrForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Forms\SettingsForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Forms\SettingsForm.Designer.cs">
|
|
<DependentUpon>SettingsForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="FlickrPlugin.cs" />
|
|
<Compile Include="FlickrConfiguration.cs" />
|
|
<Compile Include="FlickrUtils.cs" />
|
|
<Compile Include="LanguageKeys.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<None Include="Languages\language_flickrplugin-en-US.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<SubType>Designer</SubType>
|
|
</None>
|
|
<EmbeddedResource Include="FlickrPlugin.resx">
|
|
<DependentUpon>FlickrPlugin.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="flickr.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GreenshotPlugin\GreenshotPlugin.csproj">
|
|
<Project>{5B924697-4DCD-4F98-85F1-105CB84B7341}</Project>
|
|
<Name>GreenshotPlugin</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<PostBuildEvent>if exist "$(ProjectDir)FlickrCredentials.orig.cs" (
|
|
rename "$(ProjectDir)FlickrCredentials.cs" "FlickrCredentials.private.cs"
|
|
rename "$(ProjectDir)FlickrCredentials.orig.cs" "FlickrCredentials.cs"
|
|
)
|
|
|
|
mkdir "$(SolutionDir)Greenshot\bin\$(Configuration)\Plugins\$(ProjectName)"
|
|
copy "$(ProjectDir)bin\$(Configuration)\$(TargetFileName)" "$(SolutionDir)Greenshot\bin\$(Configuration)\Plugins\$(ProjectName)\*.gsp"
|
|
copy "$(ProjectDir)bin\$(Configuration)\$(ProjectName).pdb" "$(SolutionDir)Greenshot\bin\$(Configuration)\Plugins\$(ProjectName)\"
|
|
mkdir "$(SolutionDir)Greenshot\bin\$(Configuration)\Languages\Plugins\$(ProjectName)"
|
|
copy "$(ProjectDir)Languages\*.xml" "$(SolutionDir)Greenshot\bin\$(Configuration)\Languages\Plugins\$(ProjectName)\"</PostBuildEvent>
|
|
<PreBuildEvent>
|
|
if exist "$(ProjectDir)FlickrCredentials.private.cs" (
|
|
rename "$(ProjectDir)FlickrCredentials.cs" "FlickrCredentials.orig.cs"
|
|
rename "$(ProjectDir)FlickrCredentials.private.cs" "FlickrCredentials.cs"
|
|
)</PreBuildEvent>
|
|
</PropertyGroup>
|
|
</Project> |