forked from microsoft/coyote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoffeeMachineActors.csproj
27 lines (27 loc) · 1.01 KB
/
CoffeeMachineActors.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\Common\build.props" />
<PropertyGroup>
<AssemblyName>CoffeeMachineActors</AssemblyName>
<RootNamespace>Microsoft.Coyote.Samples.CoffeeMachineActors</RootNamespace>
<OutputType>Exe</OutputType>
<OutputPath>..\bin\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants></DefineConstants>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Common\LogWriter.cs" Link="LogWriter.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Collections" Version="4.3.0" />
</ItemGroup>
</Project>