1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="14.0" DefaultTargets="Build" 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>{29E941EE-35D4-44D1-BC52-E5FFC3B2D047}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>DbCommon</RootNamespace>
- <AssemblyName>DbCommon</AssemblyName>
- <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <TargetFrameworkProfile />
- </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="MySql.Data">
- <HintPath>..\PmsDLL\MySql.Data.dll</HintPath>
- </Reference>
- <Reference Include="SqlSugar">
- <HintPath>..\PmsDLL\SqlSugar.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="System.Data" />
- <Reference Include="System.Net.Http" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="BusinessCore\BaseCore\AgvMaterialBindingManager.cs" />
- <Compile Include="BusinessCore\BaseCore\AreaTrafficManager.cs" />
- <Compile Include="BusinessCore\BaseCore\AsyncBehaviorManager.cs" />
- <Compile Include="BusinessCore\BaseCore\CallTaskManager.cs" />
- <Compile Include="BusinessCore\BaseCore\LocationPropertyManager.cs" />
- <Compile Include="BusinessCore\BaseCore\MaterialBindingManager.cs" />
- <Compile Include="BusinessCore\BaseCore\MaterialDetailManager.cs" />
- <Compile Include="BusinessCore\BaseCore\PmsTaskInfoManager.cs" />
- <Compile Include="BusinessCore\BaseCore\WareHouseManager.cs" />
- <Compile Include="BusinessCore\DbCore\DbContext.cs" />
- <Compile Include="BusinessCore\DbCore\DbContextBase.cs" />
- <Compile Include="BusinessCore\DbCore\SqlSugarHelper.cs" />
- <Compile Include="Enties\DbModels\AgvMaterialBinding.cs" />
- <Compile Include="Enties\DbModels\AreaTraffic.cs" />
- <Compile Include="Enties\DbModels\AsyncBehaviorModel.cs" />
- <Compile Include="Enties\DbModels\CallTask.cs" />
- <Compile Include="Enties\DbModels\LocationProperty.cs" />
- <Compile Include="Enties\DbModels\MaterialBinding.cs" />
- <Compile Include="Enties\DbModels\MaterialDetail.cs" />
- <Compile Include="Enties\DbModels\PmsTaskInfo.cs" />
- <Compile Include="Enties\DbModels\WareHouse.cs" />
- <Compile Include="Config.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="Readme.txt" />
- </ItemGroup>
- <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>
|