C# app to record currently focused window
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WindowMonitor.csproj 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{41B32E2F-66A0-4F73-9705-E062EEA7C3ED}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>WindowMonitor</RootNamespace>
  12. <AssemblyName>WindowMonitor</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  15. <FileAlignment>512</FileAlignment>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  18. <PlatformTarget>x86</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  28. <PlatformTarget>x86</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <PropertyGroup>
  37. <StartupObject />
  38. </PropertyGroup>
  39. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  40. <DebugSymbols>true</DebugSymbols>
  41. <OutputPath>bin\x64\Debug\</OutputPath>
  42. <DefineConstants>DEBUG;TRACE</DefineConstants>
  43. <DebugType>full</DebugType>
  44. <PlatformTarget>x64</PlatformTarget>
  45. <CodeAnalysisLogFile>bin\Debug\WindowMonitor.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>
  46. <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
  47. <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
  48. <ErrorReport>prompt</ErrorReport>
  49. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  50. <CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
  51. <CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
  52. <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
  53. <CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
  54. <CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
  55. </PropertyGroup>
  56. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  57. <OutputPath>bin\x64\Release\</OutputPath>
  58. <DefineConstants>TRACE</DefineConstants>
  59. <Optimize>true</Optimize>
  60. <DebugType>pdbonly</DebugType>
  61. <PlatformTarget>x64</PlatformTarget>
  62. <CodeAnalysisLogFile>bin\Release\WindowMonitor.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>
  63. <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
  64. <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
  65. <ErrorReport>prompt</ErrorReport>
  66. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  67. <CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
  68. <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
  69. <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
  70. <CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
  71. </PropertyGroup>
  72. <ItemGroup>
  73. <Reference Include="System" />
  74. <Reference Include="System.Configuration" />
  75. <Reference Include="System.Core" />
  76. <Reference Include="System.Management" />
  77. <Reference Include="System.Xml.Linq" />
  78. <Reference Include="System.Data.DataSetExtensions" />
  79. <Reference Include="Microsoft.CSharp" />
  80. <Reference Include="System.Data" />
  81. <Reference Include="System.ServiceProcess" />
  82. <Reference Include="System.Xml" />
  83. </ItemGroup>
  84. <ItemGroup>
  85. <Compile Include="WindowMonitor.cs" />
  86. <Compile Include="WindowMonitorService.cs">
  87. <SubType>Component</SubType>
  88. </Compile>
  89. <Compile Include="WindowMonitorService.Designer.cs">
  90. <DependentUpon>WindowMonitorService.cs</DependentUpon>
  91. </Compile>
  92. <Compile Include="Program.cs" />
  93. <Compile Include="Properties\AssemblyInfo.cs" />
  94. </ItemGroup>
  95. <ItemGroup>
  96. <None Include="App.config" />
  97. </ItemGroup>
  98. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  99. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  100. Other similar extension points exist, see Microsoft.Common.targets.
  101. <Target Name="BeforeBuild">
  102. </Target>
  103. <Target Name="AfterBuild">
  104. </Target>
  105. -->
  106. </Project>