-
Notifications
You must be signed in to change notification settings - Fork 41
/
MouseClickTool.csproj
83 lines (83 loc) · 3.79 KB
/
MouseClickTool.csproj
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
<RunAnalyzers>false</RunAnalyzers>
<LangVersion>preview</LangVersion>
<ProjectGuid>{64FA4132-AC70-4006-9495-F974EE2DD808}</ProjectGuid>
<OutputType>Library</OutputType>
<TargetFrameworkVersion>v4.8.1</TargetFrameworkVersion>
<NoWin32Manifest>true</NoWin32Manifest>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Windows|x64'">
<OutputPath>obj\</OutputPath>
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<AssemblyName>MouseClickTool_x64</AssemblyName>
<WarningLevel>5</WarningLevel>
<PlatformTarget>x64</PlatformTarget>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<LangVersion>preview</LangVersion>
<ErrorReport>none</ErrorReport>
<Prefer32Bit>false</Prefer32Bit>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<UseWinFormsOutOfProcDesigner>False</UseWinFormsOutOfProcDesigner>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Windows|x86'">
<OutputPath>obj\</OutputPath>
<Optimize>true</Optimize>
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<AssemblyName>MouseClickTool_x86</AssemblyName>
<WarningLevel>5</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<LangVersion>preview</LangVersion>
<ErrorReport>none</ErrorReport>
<Prefer32Bit>false</Prefer32Bit>
<UseWinFormsOutOfProcDesigner>False</UseWinFormsOutOfProcDesigner>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<NoWarn>CS1591;S2486;S3903;S108;S1075;SA1600;SA1101;SA1633;SA1307;RCS1110;RCS1135;</NoWarn>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.8.1">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.8.1 %28x86 和 x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Windows.Forms" />
<Compile Include="MouseClickTool.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers.Unstable">
<Version>1.2.0.556</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="AfterBuild">
<MSBuild Condition="'$(Platform)' == 'x64'" Projects="$(MSBuildProjectFile)" Properties="Platform=x86;PlatFormTarget=x86" RunEachTargetSeparately="true" />
</Target>
<PropertyGroup>
<PostBuildEvent>rd /s /q "$(TargetDir)$(PlatformName)" > NUL 2>&1 &
</PostBuildEvent>
</PropertyGroup>
</Project>