2019-09-06 09:39:28 +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>{30B2D907-5861-4F39-ABAD-C4ABF1B3470E}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
<RootNamespace>SafeExamBrowser.Settings</RootNamespace>
|
|
|
|
|
<AssemblyName>SafeExamBrowser.Settings</AssemblyName>
|
|
|
|
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
<Deterministic>true</Deterministic>
|
|
|
|
|
</PropertyGroup>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<OutputPath>bin\x86\Debug\</OutputPath>
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2019-09-06 09:39:28 +02:00
|
|
|
|
</PropertyGroup>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
|
|
|
<OutputPath>bin\x86\Release\</OutputPath>
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2019-09-06 09:39:28 +02:00
|
|
|
|
</PropertyGroup>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<OutputPath>bin\x64\Debug\</OutputPath>
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<DebugType>full</DebugType>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2019-09-06 09:39:28 +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-09-06 09:39:28 +02:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
2019-11-06 15:45:17 +01:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2019-10-01 11:30:53 +02:00
|
|
|
|
<Compile Include="Applications\ApplicationSettings.cs" />
|
|
|
|
|
<Compile Include="Applications\BlacklistApplication.cs" />
|
|
|
|
|
<Compile Include="Applications\WhitelistApplication.cs" />
|
2019-12-18 08:24:55 +01:00
|
|
|
|
<Compile Include="Browser\FilterSettings.cs" />
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<Compile Include="Browser\BrowserSettings.cs" />
|
2020-09-29 14:01:17 +02:00
|
|
|
|
<Compile Include="Browser\UrlPolicy.cs" />
|
2019-12-18 08:24:55 +01:00
|
|
|
|
<Compile Include="Browser\WindowPosition.cs" />
|
|
|
|
|
<Compile Include="Browser\WindowSettings.cs" />
|
|
|
|
|
<Compile Include="Browser\Filter\FilterResult.cs" />
|
|
|
|
|
<Compile Include="Browser\Filter\FilterRuleSettings.cs" />
|
|
|
|
|
<Compile Include="Browser\Filter\FilterRuleType.cs" />
|
2019-12-12 15:41:05 +01:00
|
|
|
|
<Compile Include="Browser\PopupPolicy.cs" />
|
2019-12-18 08:24:55 +01:00
|
|
|
|
<Compile Include="Browser\Proxy\ProxyPolicy.cs" />
|
2019-12-18 08:09:59 +01:00
|
|
|
|
<Compile Include="Browser\ProxySettings.cs" />
|
2019-12-18 08:24:55 +01:00
|
|
|
|
<Compile Include="Browser\Proxy\ProxyProtocol.cs" />
|
|
|
|
|
<Compile Include="Browser\Proxy\ProxyConfiguration.cs" />
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<Compile Include="ConfigurationMode.cs" />
|
2021-03-10 21:26:45 +01:00
|
|
|
|
<Compile Include="Proctoring\JitsiMeetSettings.cs" />
|
2021-02-10 00:49:32 +01:00
|
|
|
|
<Compile Include="Proctoring\ProctoringSettings.cs" />
|
2021-03-23 21:12:47 +01:00
|
|
|
|
<Compile Include="Proctoring\WindowVisibility.cs" />
|
2021-03-10 21:26:45 +01:00
|
|
|
|
<Compile Include="Proctoring\ZoomSettings.cs" />
|
2020-07-01 13:39:17 +02:00
|
|
|
|
<Compile Include="SessionMode.cs" />
|
2019-12-20 11:37:07 +01:00
|
|
|
|
<Compile Include="Security\KioskMode.cs" />
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<Compile Include="Logging\LogLevel.cs" />
|
|
|
|
|
<Compile Include="Monitoring\KeyboardSettings.cs" />
|
|
|
|
|
<Compile Include="Monitoring\MouseSettings.cs" />
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
2019-12-20 11:37:07 +01:00
|
|
|
|
<Compile Include="Security\SecuritySettings.cs" />
|
|
|
|
|
<Compile Include="Security\VirtualMachinePolicy.cs" />
|
2020-07-01 13:39:17 +02:00
|
|
|
|
<Compile Include="Server\ServerSettings.cs" />
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<Compile Include="Service\ServicePolicy.cs" />
|
|
|
|
|
<Compile Include="Service\ServiceSettings.cs" />
|
2019-10-01 11:30:53 +02:00
|
|
|
|
<Compile Include="AppSettings.cs" />
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<Compile Include="SystemComponents\AudioSettings.cs" />
|
|
|
|
|
<Compile Include="UserInterface\ActionCenterSettings.cs" />
|
|
|
|
|
<Compile Include="UserInterface\TaskbarSettings.cs" />
|
|
|
|
|
<Compile Include="UserInterface\UserInterfaceMode.cs" />
|
|
|
|
|
</ItemGroup>
|
2019-10-01 11:30:53 +02:00
|
|
|
|
<ItemGroup />
|
2019-09-06 09:39:28 +02:00
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
</Project>
|