27 строки
1.0 KiB
XML
27 строки
1.0 KiB
XML
<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> |