31d6d544d0
- Extracted operations and notifications from core library and moved them to client resp. runtime component. - Renamead runtime component to SafeExamBrowser.Runtime. - Moved post-build event from browser to client assembly.
153 lines
No EOL
7.4 KiB
XML
153 lines
No EOL
7.4 KiB
XML
<?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>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectGuid>{7CC5A895-E0D3-4E43-9B39-CCEC05A5A6A7}</ProjectGuid>
|
|
<OutputType>WinExe</OutputType>
|
|
<RootNamespace>SafeExamBrowser.Client</RootNamespace>
|
|
<AssemblyName>SafeExamBrowser.Client</AssemblyName>
|
|
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
<WarningLevel>4</WarningLevel>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
<TargetFrameworkProfile />
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<OutputPath>bin\x86\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<DebugType>full</DebugType>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
<Prefer32Bit>true</Prefer32Bit>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
<OutputPath>bin\x86\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>true</Optimize>
|
|
<DebugType>pdbonly</DebugType>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
<Prefer32Bit>true</Prefer32Bit>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="System.Xaml">
|
|
<RequiredTargetFramework>4.0</RequiredTargetFramework>
|
|
</Reference>
|
|
<Reference Include="WindowsBase" />
|
|
<Reference Include="PresentationCore" />
|
|
<Reference Include="PresentationFramework" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="App.cs" />
|
|
<Compile Include="Behaviour\ClientController.cs" />
|
|
<Compile Include="CompositionRoot.cs" />
|
|
<Compile Include="Notifications\AboutNotificationController.cs" />
|
|
<Compile Include="Notifications\AboutNotificationIconResource.cs" />
|
|
<Compile Include="Notifications\AboutNotificationInfo.cs" />
|
|
<Compile Include="Notifications\LogNotificationController.cs" />
|
|
<Compile Include="Notifications\LogNotificationIconResource.cs" />
|
|
<Compile Include="Notifications\LogNotificationInfo.cs" />
|
|
<Compile Include="Behaviour\Operations\BrowserOperation.cs" />
|
|
<Compile Include="Behaviour\Operations\ClientControllerOperation.cs" />
|
|
<Compile Include="Behaviour\Operations\ClipboardOperation.cs" />
|
|
<Compile Include="Behaviour\Operations\DisplayMonitorOperation.cs" />
|
|
<Compile Include="Behaviour\Operations\KeyboardInterceptorOperation.cs" />
|
|
<Compile Include="Behaviour\Operations\MouseInterceptorOperation.cs" />
|
|
<Compile Include="Behaviour\Operations\ProcessMonitorOperation.cs" />
|
|
<Compile Include="Behaviour\Operations\TaskbarOperation.cs" />
|
|
<Compile Include="Behaviour\Operations\WindowMonitorOperation.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="Properties\Resources.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DesignTime>True</DesignTime>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Properties\Settings.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
</Compile>
|
|
<EmbeddedResource Include="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
<None Include="app.manifest" />
|
|
<None Include="Properties\Settings.settings">
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="App.config" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SafeExamBrowser.Browser\SafeExamBrowser.Browser.csproj">
|
|
<Project>{04E653F1-98E6-4E34-9DD7-7F2BC1A8B767}</Project>
|
|
<Name>SafeExamBrowser.Browser</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\SafeExamBrowser.Configuration\SafeExamBrowser.Configuration.csproj">
|
|
<Project>{C388C4DD-A159-457D-AF92-89F7AD185109}</Project>
|
|
<Name>SafeExamBrowser.Configuration</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\SafeExamBrowser.Contracts\SafeExamBrowser.Contracts.csproj">
|
|
<Project>{47DA5933-BEF8-4729-94E6-ABDE2DB12262}</Project>
|
|
<Name>SafeExamBrowser.Contracts</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\SafeExamBrowser.Core\SafeExamBrowser.Core.csproj">
|
|
<Project>{3D6FDBB6-A4AF-4626-BB2B-BF329D44F9CC}</Project>
|
|
<Name>SafeExamBrowser.Core</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\SafeExamBrowser.Monitoring\SafeExamBrowser.Monitoring.csproj">
|
|
<Project>{EF563531-4EB5-44B9-A5EC-D6D6F204469B}</Project>
|
|
<Name>SafeExamBrowser.Monitoring</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\SafeExamBrowser.SystemComponents\SafeExamBrowser.SystemComponents.csproj">
|
|
<Project>{ACEE2EF1-14D2-4B52-8994-5C053055BB51}</Project>
|
|
<Name>SafeExamBrowser.SystemComponents</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\SafeExamBrowser.UserInterface.Classic\SafeExamBrowser.UserInterface.Classic.csproj">
|
|
<Project>{A502DF54-7169-4647-94BD-18B192924866}</Project>
|
|
<Name>SafeExamBrowser.UserInterface.Classic</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\SafeExamBrowser.WindowsApi\SafeExamBrowser.WindowsApi.csproj">
|
|
<Project>{73724659-4150-4792-A94E-42F5F3C1B696}</Project>
|
|
<Name>SafeExamBrowser.WindowsApi</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
<PropertyGroup>
|
|
<PostBuildEvent>xcopy /E /Y "$(SolutionDir)SafeExamBrowser.Browser\bin\$(PlatformName)\$(ConfigurationName)" "$(ProjectDir)bin\$(PlatformName)\$(ConfigurationName)"</PostBuildEvent>
|
|
</PropertyGroup>
|
|
</Project> |