Skip to content

Commit 2d12ef4

Browse files
committed
Rename Flow2 to Flow
1 parent d299568 commit 2d12ef4

File tree

3 files changed

+108
-2
lines changed

3 files changed

+108
-2
lines changed

Flow.csproj

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{18326C80-2CC4-417D-8FEE-EA608ED85636}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>Flow</RootNamespace>
11+
<AssemblyName>Flow</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<Deterministic>true</Deterministic>
15+
<NuGetPackageImportStamp>
16+
</NuGetPackageImportStamp>
17+
</PropertyGroup>
18+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19+
<DebugSymbols>true</DebugSymbols>
20+
<DebugType>full</DebugType>
21+
<Optimize>false</Optimize>
22+
<OutputPath>bin\Debug\</OutputPath>
23+
<DefineConstants>DEBUG;TRACE</DefineConstants>
24+
<ErrorReport>prompt</ErrorReport>
25+
<WarningLevel>4</WarningLevel>
26+
</PropertyGroup>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
</PropertyGroup>
35+
<ItemGroup>
36+
<Reference Include="System" />
37+
<Reference Include="System.Core" />
38+
<Reference Include="System.Xml.Linq" />
39+
<Reference Include="System.Data.DataSetExtensions" />
40+
<Reference Include="Microsoft.CSharp" />
41+
<Reference Include="System.Data" />
42+
<Reference Include="System.Net.Http" />
43+
<Reference Include="System.Xml" />
44+
</ItemGroup>
45+
<ItemGroup>
46+
<Compile Include="EDebugLevel.cs" />
47+
<Compile Include="ELogLevel.cs" />
48+
<Compile Include="IBarrier.cs" />
49+
<Compile Include="IBreak.cs" />
50+
<Compile Include="ICase.cs" />
51+
<Compile Include="IChannel.cs" />
52+
<Compile Include="ICoroutine.cs" />
53+
<Compile Include="IFactory.cs" />
54+
<Compile Include="IFuture.cs" />
55+
<Compile Include="IGenerator.cs" />
56+
<Compile Include="IGroup.cs" />
57+
<Compile Include="IKernel.cs" />
58+
<Compile Include="ILogger.cs" />
59+
<Compile Include="Impl\Barrier.cs" />
60+
<Compile Include="Impl\BlockingChannel.cs" />
61+
<Compile Include="Impl\Break.cs" />
62+
<Compile Include="Impl\Case.cs" />
63+
<Compile Include="Impl\Channel.cs" />
64+
<Compile Include="Impl\Coroutine.cs" />
65+
<Compile Include="Impl\Create.cs" />
66+
<Compile Include="Impl\Exception.cs" />
67+
<Compile Include="Impl\Extension.cs" />
68+
<Compile Include="Impl\Factory.cs" />
69+
<Compile Include="Impl\Future.cs" />
70+
<Compile Include="Impl\Generator.cs" />
71+
<Compile Include="Impl\Group.cs" />
72+
<Compile Include="Impl\Kernel.cs" />
73+
<Compile Include="Impl\Node.cs" />
74+
<Compile Include="Impl\Periodic.cs" />
75+
<Compile Include="Impl\Sequence.cs" />
76+
<Compile Include="Impl\SpinWait.cs" />
77+
<Compile Include="Impl\Subroutine.cs" />
78+
<Compile Include="Impl\TimedBarrier.cs" />
79+
<Compile Include="Impl\TimedFuture.cs" />
80+
<Compile Include="Impl\TimedTrigger.cs" />
81+
<Compile Include="Impl\TimeFrame.cs" />
82+
<Compile Include="Impl\Timer.cs" />
83+
<Compile Include="Impl\Transient.cs" />
84+
<Compile Include="Impl\Trigger.cs" />
85+
<Compile Include="Impl\VolatileBool.cs" />
86+
<Compile Include="INamed.cs" />
87+
<Compile Include="INode.cs" />
88+
<Compile Include="IPeriodic.cs" />
89+
<Compile Include="ISequence.cs" />
90+
<Compile Include="ISteppable.cs" />
91+
<Compile Include="ISubroutine.cs" />
92+
<Compile Include="ITimedTransients.cs" />
93+
<Compile Include="ITimeFrame.cs" />
94+
<Compile Include="ITimer.cs" />
95+
<Compile Include="ITimesOut.cs" />
96+
<Compile Include="ITransient.cs" />
97+
<Compile Include="ITrigger.cs" />
98+
<Compile Include="LoggerFacade.cs" />
99+
<Compile Include="Logger\ConsoleLogger.cs" />
100+
<Compile Include="Logger\Logger.cs" />
101+
<Compile Include="Logger\PrettyPrinter.cs" />
102+
<Compile Include="Logger\UnityLogger.cs" />
103+
<Compile Include="Properties\AssemblyInfo.cs" />
104+
</ItemGroup>
105+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
106+
</Project>

Flow.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.28307.572
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Flow2", "Flow2.csproj", "{18326C80-2CC4-417D-8FEE-EA608ED85636}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Flow", "Flow.csproj", "{18326C80-2CC4-417D-8FEE-EA608ED85636}"
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestFlow", "TestFlow\TestFlow.csproj", "{12E9E3DC-61D3-42F6-B9AF-8BE0C5EAAC9F}"
99
EndProject

TestFlow/TestFlow.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
5151
</ItemGroup>
5252
<ItemGroup>
53-
<ProjectReference Include="..\Flow2.csproj">
53+
<ProjectReference Include="..\Flow.csproj">
5454
<Project>{18326c80-2cc4-417d-8fee-ea608ed85636}</Project>
5555
<Name>Flow2</Name>
5656
</ProjectReference>

0 commit comments

Comments
 (0)