Integrating LINQ to Umbraco into the umbraco UI Upgrade 4.1 to .NET 3.5 [TFS Changeset #55173]
150 lines
7.0 KiB
XML
150 lines
7.0 KiB
XML
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>9.0.30729</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{C7CB79F0-1C97-4B33-BFA7-00731B579AE2}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>umbraco.DataLayer</RootNamespace>
|
|
<AssemblyName>umbraco.DataLayer</AssemblyName>
|
|
<SccProjectName>SAK</SccProjectName>
|
|
<SccLocalPath>SAK</SccLocalPath>
|
|
<SccAuxPath>SAK</SccAuxPath>
|
|
<SccProvider>SAK</SccProvider>
|
|
<FileUpgradeFlags>
|
|
</FileUpgradeFlags>
|
|
<OldToolsVersion>2.0</OldToolsVersion>
|
|
<UpgradeBackupLocation>
|
|
</UpgradeBackupLocation>
|
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>TRACE;DEBUG;DebugDataLayer</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<DocumentationFile>
|
|
</DocumentationFile>
|
|
</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>
|
|
<DocumentationFile>bin\Release\umbraco.DataLayer.XML</DocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.ApplicationBlocks.Data, Version=1.0.1559.20655, Culture=neutral">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\..\foreign dlls\Microsoft.ApplicationBlocks.Data.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="MySql.Data, Version=5.1.2.2, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\..\foreign dlls\MySql.Data.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Core">
|
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
|
</Reference>
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Xml" />
|
|
<Reference Include="VistaDB For Umbraco, Version=0.1.0.0, Culture=neutral, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\..\foreign dlls\VistaDB For Umbraco.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="VistaDB.NET20, Version=3.3.1.57, Culture=neutral, PublicKeyToken=dfc935afe2125461, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\..\foreign dlls\VistaDB.NET20.dll</HintPath>
|
|
<Private>True</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="DataLayerHelper.cs" />
|
|
<Compile Include="Extensions\ISqlHelperExtension.cs" />
|
|
<Compile Include="Extensions\Logger.cs" />
|
|
<Compile Include="Extensions\SqlHelperExtender.cs" />
|
|
<Compile Include="Extensions\SqlHelperExtension.cs" />
|
|
<Compile Include="IRecordsReader.cs" />
|
|
<Compile Include="ISqlHelper.cs" />
|
|
<Compile Include="IParameterContainer.cs" />
|
|
<Compile Include="SqlHelperException.cs" />
|
|
<Compile Include="SqlHelpers\MySql\MySqlInstaller.cs" />
|
|
<Compile Include="SqlHelpers\MySql\MySqlParser.cs" />
|
|
<Compile Include="SqlHelpers\MySql\SqlResources.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DesignTime>True</DesignTime>
|
|
<DependentUpon>SqlResources.resx</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="SqlHelpers\MySql\MySqlUtility.cs" />
|
|
<Compile Include="SqlHelpers\SqlServer\SqlServerTableUtility.cs" />
|
|
<Compile Include="SqlParser.cs" />
|
|
<Compile Include="SqlHelpers\SqlServer\SqlResources.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DesignTime>True</DesignTime>
|
|
<DependentUpon>SqlResources.resx</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="SqlHelpers\SqlServer\SqlServerInstaller.cs" />
|
|
<Compile Include="SqlHelpers\SqlServer\SqlServerUtility.cs" />
|
|
<Compile Include="UmbracoException.cs" />
|
|
<Compile Include="Utility\BaseUtility.cs" />
|
|
<Compile Include="Utility\Installer\DatabaseVersion.cs" />
|
|
<Compile Include="Utility\Installer\DefaultInstallerUtility.cs" />
|
|
<Compile Include="Utility\Table\DefaultField.cs" />
|
|
<Compile Include="Utility\Table\DefaultTable.cs" />
|
|
<Compile Include="Utility\Table\FieldProperties.cs" />
|
|
<Compile Include="Utility\Table\IField.cs" />
|
|
<Compile Include="Utility\Table\ITable.cs" />
|
|
<Compile Include="Utility\Table\DefaultTableUtility.cs" />
|
|
<Compile Include="Utility\DefaultUtilitySet.cs" />
|
|
<Compile Include="Utility\Table\ITableUtility.cs" />
|
|
<Compile Include="Utility\Installer\IInstallerUtility.cs" />
|
|
<Compile Include="Utility\IUtilitySet.cs" />
|
|
<Compile Include="SqlHelpers\MySql\MySqlDataReader.cs" />
|
|
<Compile Include="SqlHelpers\MySql\MySqlHelper.cs" />
|
|
<Compile Include="SqlHelpers\MySql\MySqlParameter.cs" />
|
|
<Compile Include="SqlParameterAdapter.cs" />
|
|
<Compile Include="SqlHelper.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="IParameter.cs" />
|
|
<Compile Include="RecordsReaderAdapter.cs" />
|
|
<Compile Include="SqlHelpers\SqlServer\SqlServerDataReader.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="SqlHelpers\SqlServer\SqlServerHelper.cs" />
|
|
<Compile Include="SqlHelpers\SqlServer\SqlServerParameter.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="SqlHelpers\SqlServer\Sql\Total.sql" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="SqlHelpers\MySql\SqlResources.resx">
|
|
<SubType>Designer</SubType>
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>SqlResources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="SqlHelpers\SqlServer\SqlResources.resx">
|
|
<SubType>Designer</SubType>
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>SqlResources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="SqlHelpers\MySql\Sql\Total.sql" />
|
|
<None Include="SqlHelpers\SqlServer\Sql\Version3_Upgrade.sql" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildBinPath)\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> |