28 lines
982 B
XML
28 lines
982 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<LangVersion>12</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<WarningsAsErrors>nullable</WarningsAsErrors>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DocumentationFile>bin\Debug\netstandard2.1\PkmnLib.Dynamic.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DocumentationFile>bin\Release\netstandard2.1\PkmnLib.Dynamic.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentResults" Version="3.16.0"/>
|
|
<PackageReference Include="System.Collections.Immutable" Version="8.0.0"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PkmnLib.Static\PkmnLib.Static.csproj"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|