mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-09 07:13:02 -08:00
3ebdf3d2fe
Fixed an issue with running on Windows 7, as it was trying to access a Windows 10 API
15 lines
578 B
XML
15 lines
578 B
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<RootNamespace>GreenshotOCRCommand</RootNamespace>
|
|
<AssemblyName>GreenshotOCRCommand</AssemblyName>
|
|
<OutputType>WinExe</OutputType>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="CustomMarshalers" />
|
|
</ItemGroup>
|
|
<Target Name="PostBuild" BeforeTargets="PostBuildEvent" Condition="'$(BuildingInsideVisualStudio)' == 'true'">
|
|
<Exec Command="xcopy /q /y /d "$(TargetDir)*.exe" "$(SolutionDir)$(SolutionName)\$(OutDir)"" />
|
|
</Target>
|
|
</Project>
|