/examples/ioc/ConstructorInjection/ConstructorInjectionUsingFluentInterfaces.csproj
MSBuild | 98 lines | 91 code | 0 blank | 7 comment | 0 complexity | a82c79c1fdf1d1ecb8e9f1327864f995 MD5 | raw file
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> 2 <PropertyGroup> 3 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 4 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 5 <ProductVersion>9.0.21022</ProductVersion> 6 <SchemaVersion>2.0</SchemaVersion> 7 <ProjectGuid>{5B0C5CD0-0D9C-423F-AD14-4FE5B1AA60E3}</ProjectGuid> 8 <OutputType>Exe</OutputType> 9 <AppDesignerFolder>Properties</AppDesignerFolder> 10 <RootNamespace>ConstructorInjectionUsingFluentInterfaces</RootNamespace> 11 <AssemblyName>ConstructorInjectionUsingFluentInterfaces</AssemblyName> 12 <FileUpgradeFlags> 13 </FileUpgradeFlags> 14 <OldToolsVersion>2.0</OldToolsVersion> 15 <UpgradeBackupLocation> 16 </UpgradeBackupLocation> 17 <PublishUrl>publish\</PublishUrl> 18 <Install>true</Install> 19 <InstallFrom>Disk</InstallFrom> 20 <UpdateEnabled>false</UpdateEnabled> 21 <UpdateMode>Foreground</UpdateMode> 22 <UpdateInterval>7</UpdateInterval> 23 <UpdateIntervalUnits>Days</UpdateIntervalUnits> 24 <UpdatePeriodically>false</UpdatePeriodically> 25 <UpdateRequired>false</UpdateRequired> 26 <MapFileExtensions>true</MapFileExtensions> 27 <ApplicationRevision>0</ApplicationRevision> 28 <ApplicationVersion>1.0.0.%2a</ApplicationVersion> 29 <IsWebBootstrapper>false</IsWebBootstrapper> 30 <UseApplicationTrust>false</UseApplicationTrust> 31 <BootstrapperEnabled>true</BootstrapperEnabled> 32 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 33 </PropertyGroup> 34 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 35 <DebugSymbols>true</DebugSymbols> 36 <DebugType>full</DebugType> 37 <Optimize>false</Optimize> 38 <OutputPath>bin\Debug\</OutputPath> 39 <DefineConstants>DEBUG;TRACE</DefineConstants> 40 <ErrorReport>prompt</ErrorReport> 41 <WarningLevel>4</WarningLevel> 42 </PropertyGroup> 43 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 44 <DebugType>pdbonly</DebugType> 45 <Optimize>true</Optimize> 46 <OutputPath>bin\Release\</OutputPath> 47 <DefineConstants>TRACE</DefineConstants> 48 <ErrorReport>prompt</ErrorReport> 49 <WarningLevel>4</WarningLevel> 50 </PropertyGroup> 51 <ItemGroup> 52 <Reference Include="LinFu.Core, Version=2.0.1.17052, Culture=neutral, processorArchitecture=MSIL"> 53 <SpecificVersion>False</SpecificVersion> 54 <HintPath>..\bin\LinFu.Core.dll</HintPath> 55 </Reference> 56 <Reference Include="System" /> 57 <Reference Include="System.Core"> 58 <RequiredTargetFramework>3.5</RequiredTargetFramework> 59 </Reference> 60 <Reference Include="System.Data" /> 61 <Reference Include="System.Xml" /> 62 </ItemGroup> 63 <ItemGroup> 64 <Compile Include="Program.cs" /> 65 <Compile Include="Properties\AssemblyInfo.cs" /> 66 </ItemGroup> 67 <ItemGroup> 68 <ProjectReference Include="CarLibrary3\CarLibrary3.csproj"> 69 <Project>{435623F9-1519-4C28-AC67-4FECF4DFF1C2}</Project> 70 <Name>CarLibrary3</Name> 71 </ProjectReference> 72 </ItemGroup> 73 <ItemGroup> 74 <BootstrapperPackage Include="Microsoft.Net.Framework.2.0"> 75 <Visible>False</Visible> 76 <ProductName>.NET Framework 2.0 %28x86%29</ProductName> 77 <Install>true</Install> 78 </BootstrapperPackage> 79 <BootstrapperPackage Include="Microsoft.Net.Framework.3.0"> 80 <Visible>False</Visible> 81 <ProductName>.NET Framework 3.0 %28x86%29</ProductName> 82 <Install>false</Install> 83 </BootstrapperPackage> 84 <BootstrapperPackage Include="Microsoft.Net.Framework.3.5"> 85 <Visible>False</Visible> 86 <ProductName>.NET Framework 3.5</ProductName> 87 <Install>false</Install> 88 </BootstrapperPackage> 89 </ItemGroup> 90 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 91 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 92 Other similar extension points exist, see Microsoft.Common.targets. 93 <Target Name="BeforeBuild"> 94 </Target> 95 <Target Name="AfterBuild"> 96 </Target> 97 --> 98</Project>