Implab.csproj
52 lines
| 2.2 KiB
| text/plain
|
TextLexer
/ Implab / Implab.csproj
cin
|
r2 | <?xml version="1.0" encoding="utf-8"?> | |
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||
<PropertyGroup> | |||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |||
<ProductVersion>10.0.0</ProductVersion> | |||
<SchemaVersion>2.0</SchemaVersion> | |||
cin
|
r4 | <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid> | |
cin
|
r2 | <OutputType>Library</OutputType> | |
<RootNamespace>Implab</RootNamespace> | |||
<AssemblyName>Implab</AssemblyName> | |||
</PropertyGroup> | |||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |||
<DebugSymbols>true</DebugSymbols> | |||
<DebugType>full</DebugType> | |||
<Optimize>false</Optimize> | |||
<OutputPath>bin\Debug</OutputPath> | |||
<DefineConstants>DEBUG;</DefineConstants> | |||
<ErrorReport>prompt</ErrorReport> | |||
<WarningLevel>4</WarningLevel> | |||
<ConsolePause>false</ConsolePause> | |||
</PropertyGroup> | |||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |||
<DebugType>full</DebugType> | |||
<Optimize>true</Optimize> | |||
<OutputPath>bin\Release</OutputPath> | |||
<ErrorReport>prompt</ErrorReport> | |||
<WarningLevel>4</WarningLevel> | |||
<ConsolePause>false</ConsolePause> | |||
</PropertyGroup> | |||
<ItemGroup> | |||
<Reference Include="System" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
cin
|
r12 | <Compile Include="ICancellable.cs" /> | |
<Compile Include="IProgressHandler.cs" /> | |||
<Compile Include="IProgressNotifier.cs" /> | |||
cin
|
r8 | <Compile Include="IPromise.cs" /> | |
cin
|
r12 | <Compile Include="ITaskController.cs" /> | |
<Compile Include="ManagedPromise.cs" /> | |||
<Compile Include="Parallels\WorkerPool.cs" /> | |||
cin
|
r8 | <Compile Include="PromiseState.cs" /> | |
cin
|
r7 | <Compile Include="TaskController.cs" /> | |
<Compile Include="ProgressInitEventArgs.cs" /> | |||
cin
|
r2 | <Compile Include="Properties\AssemblyInfo.cs" /> | |
<Compile Include="Promise.cs" /> | |||
cin
|
r11 | <Compile Include="Parallels\AsyncPool.cs" /> | |
cin
|
r2 | <Compile Include="Safe.cs" /> | |
cin
|
r7 | <Compile Include="ValueEventArgs.cs" /> | |
cin
|
r2 | </ItemGroup> | |
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | |||
cin
|
r11 | <ItemGroup /> | |
user@factory.site.local
|
r0 | </Project> |