An alternative to UBB.threads
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.
 
 
 
 
FLocal/Web.Core/Web.Core.csproj

103 lines
4.6 KiB

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{6F532626-E9F8-498E-9683-1538E7CD62CB}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Web.Core</RootNamespace>
<AssemblyName>Web.Core</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<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' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Box.cs" />
<Compile Include="Cache.cs" />
<Compile Include="Config.cs" />
<Compile Include="Counter.cs" />
<Compile Include="DataObject.cs" />
<Compile Include="DB\conditions\AbstractCondition.cs" />
<Compile Include="DB\ColumnOrValue.cs" />
<Compile Include="DB\ColumnSpec.cs" />
<Compile Include="DB\conditions\ComparisonCondition.cs" />
<Compile Include="DB\conditions\ComparisonType.cs" />
<Compile Include="DB\conditions\ComplexCondition.cs" />
<Compile Include="DB\conditions\ConditionsJoinType.cs" />
<Compile Include="DB\conditions\EmptyCondition.cs" />
<Compile Include="DB\conditions\IsNullCondition.cs" />
<Compile Include="DB\conditions\MultiValueCondition.cs" />
<Compile Include="DB\conditions\NotEmptyCondition.cs" />
<Compile Include="DB\conditions\NotIsNullCondition.cs" />
<Compile Include="DB\conditions\SimpleCondition.cs" />
<Compile Include="DB\Diapasone.cs" />
<Compile Include="DB\IDBConnection.cs" />
<Compile Include="DB\ILock.cs" />
<Compile Include="DB\ITableSpec.cs" />
<Compile Include="DB\JoinSpec.cs" />
<Compile Include="DB\SortSpec.cs" />
<Compile Include="DB\Transaction.cs" />
<Compile Include="delegates\Lazy.cs" />
<Compile Include="delegates\Predicate.cs" />
<Compile Include="exceptions\AccessDeniedException.cs" />
<Compile Include="exceptions\CriticalException.cs" />
<Compile Include="exceptions\FLocalException.cs" />
<Compile Include="exceptions\NotFoundInDBException.cs" />
<Compile Include="exceptions\ObjectDoesntHaveAnIdException.cs" />
<Compile Include="extensions\Delegate.cs" />
<Compile Include="extensions\Extensions.cs" />
<Compile Include="extensions\String.cs" />
<Compile Include="IDataObject.cs" />
<Compile Include="IInteractiveConsole.cs" />
<Compile Include="ILogger.cs" />
<Compile Include="Network\IPv4.cs" />
<Compile Include="Network\IPv4Subnet.cs" />
<Compile Include="Network\IPv4Address.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Registry.cs" />
<Compile Include="RegistryCleaner.cs" />
<Compile Include="Switch.cs" />
<Compile Include="Util.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>