2019-08-30 09:55:26 +02:00
|
|
|
|
<?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>{5FB5273D-277C-41DD-8593-A25CE1AFF2E9}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
<RootNamespace>SafeExamBrowser.Browser.Contracts</RootNamespace>
|
|
|
|
|
<AssemblyName>SafeExamBrowser.Browser.Contracts</AssemblyName>
|
2023-06-22 16:15:23 +02:00
|
|
|
|
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
2019-08-30 09:55:26 +02:00
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
<Deterministic>true</Deterministic>
|
2023-06-22 16:15:23 +02:00
|
|
|
|
<TargetFrameworkProfile />
|
2019-08-30 09:55:26 +02:00
|
|
|
|
</PropertyGroup>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
2019-08-30 09:55:26 +02:00
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<OutputPath>bin\x86\Debug\</OutputPath>
|
2019-08-30 09:55:26 +02:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2019-08-30 09:55:26 +02:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2019-08-30 09:55:26 +02:00
|
|
|
|
</PropertyGroup>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
|
|
|
<OutputPath>bin\x86\Release\</OutputPath>
|
2019-08-30 09:55:26 +02:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2019-08-30 09:55:26 +02:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2019-08-30 09:55:26 +02:00
|
|
|
|
</PropertyGroup>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
2019-08-30 09:55:26 +02:00
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<OutputPath>bin\x64\Debug\</OutputPath>
|
2019-08-30 09:55:26 +02:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<DebugType>full</DebugType>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2019-08-30 09:55:26 +02:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
</PropertyGroup>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
|
|
|
|
<OutputPath>bin\x64\Release\</OutputPath>
|
2019-08-30 09:55:26 +02:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2019-08-30 09:55:26 +02:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2019-09-06 08:13:27 +02:00
|
|
|
|
<Compile Include="Events\DownloadEventArgs.cs" />
|
|
|
|
|
<Compile Include="Events\DownloadFinishedCallback.cs" />
|
|
|
|
|
<Compile Include="Events\DownloadRequestedEventHandler.cs" />
|
2022-05-02 16:43:50 +02:00
|
|
|
|
<Compile Include="Events\TabPressedEventHandler.cs" />
|
2022-05-02 16:33:35 +02:00
|
|
|
|
<Compile Include="Events\LoseFocusRequestedEventHandler.cs" />
|
2023-11-01 13:52:39 +01:00
|
|
|
|
<Compile Include="Events\UserIdentifierDetectedEventHandler.cs" />
|
2019-12-19 15:02:40 +01:00
|
|
|
|
<Compile Include="Events\TerminationRequestedEventHandler.cs" />
|
2019-09-13 09:17:14 +02:00
|
|
|
|
<Compile Include="Filters\IRequestFilter.cs" />
|
|
|
|
|
<Compile Include="Filters\IRule.cs" />
|
|
|
|
|
<Compile Include="Filters\IRuleFactory.cs" />
|
|
|
|
|
<Compile Include="Filters\Request.cs" />
|
2019-08-30 12:30:00 +02:00
|
|
|
|
<Compile Include="IBrowserApplication.cs" />
|
2024-02-13 11:04:36 +01:00
|
|
|
|
<Compile Include="IBrowserWindow.cs" />
|
2019-08-30 09:55:26 +02:00
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\SafeExamBrowser.Applications.Contracts\SafeExamBrowser.Applications.Contracts.csproj">
|
|
|
|
|
<Project>{ac77745d-3b41-43e2-8e84-d40e5a4ee77f}</Project>
|
|
|
|
|
<Name>SafeExamBrowser.Applications.Contracts</Name>
|
|
|
|
|
</ProjectReference>
|
2019-09-13 09:17:14 +02:00
|
|
|
|
<ProjectReference Include="..\SafeExamBrowser.Settings\SafeExamBrowser.Settings.csproj">
|
|
|
|
|
<Project>{30b2d907-5861-4f39-abad-c4abf1b3470e}</Project>
|
|
|
|
|
<Name>SafeExamBrowser.Settings</Name>
|
|
|
|
|
</ProjectReference>
|
2019-08-30 09:55:26 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
</Project>
|