20 lines
569 B
XML
20 lines
569 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
||
<PropertyGroup>
|
||
<OutputType>Exe</OutputType>
|
||
<TargetFramework>net6.0</TargetFramework>
|
||
<RootNamespace>Pattern_2_Шаблонный_метод</RootNamespace>
|
||
<ImplicitUsings>enable</ImplicitUsings>
|
||
<Nullable>enable</Nullable>
|
||
</PropertyGroup>
|
||
|
||
<ItemGroup>
|
||
<PackageReference Include="System.ServiceModel.Primitives" Version="4.9.0" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<ProjectReference Include="..\Pattern_1-Стратегия\Pattern_1-Стратегия(Strategy).csproj" />
|
||
</ItemGroup>
|
||
|
||
</Project>
|