mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-21 17:59:43 -06:00
21 lines
719 B
XML
21 lines
719 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug'">
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="3.4.3" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="3.4.3" />
|
|
<PackageReference Include="Moq" Version="4.20.70" />
|
|
<Reference Include="FileFlows.Plugin">
|
|
<HintPath>..\FileFlows.Plugin.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|