-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solves the following error: `Unable to find /home/charles-pc/Documents/GitHub/audio-analysis/tests/AED.Test/bin/Debug/netcoreapp3.1/testhost.dll. Please publish your test project and retry.` By added `Microsoft.NET.Test.Sdk` PackageReference. Work done for #196
- Loading branch information
1 parent
894012b
commit 0a58db5
Showing
3 changed files
with
68 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,42 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<UseStandardResourceNames>true</UseStandardResourceNames> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<Name>AED.Test</Name> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugType>portable</DebugType> | ||
<Tailcalls>false</Tailcalls> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>portable</DebugType> | ||
<Tailcalls>true</Tailcalls> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Common.fs" /> | ||
<Compile Include="FsCheckArbs.fs" /> | ||
<Compile Include="UtilTest.fs" /> | ||
<Compile Include="MatlabTest.fs" /> | ||
<Compile Include="AcousticEventDetectionTest.fs" /> | ||
<Compile Include="GetAcousticEventsTest.fs" /> | ||
<Compile Include="EventPatternRecogTest.fs" /> | ||
<Compile Include="SpectralPeakTrackTest.fs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="FSharp.Core" Version="4.7.0" /> | ||
<PackageReference Include="FsCheck" Version="3.0.0-alpha4" /> | ||
<PackageReference Include="FsCheck.Xunit" Version="3.0.0-alpha4" /> | ||
<PackageReference Include="FsUnit.xUnit" Version="3.8.0" /> | ||
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="xunit" Version="2.4.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Acoustics.Shared.FSharp\Acoustics.Shared.FSharp.fsproj" /> | ||
<ProjectReference Include="..\..\src\AED\AED.fsproj" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<UseStandardResourceNames>true</UseStandardResourceNames> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<Name>AED.Test</Name> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugType>portable</DebugType> | ||
<Tailcalls>false</Tailcalls> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>portable</DebugType> | ||
<Tailcalls>true</Tailcalls> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Common.fs" /> | ||
<Compile Include="FsCheckArbs.fs" /> | ||
<Compile Include="UtilTest.fs" /> | ||
<Compile Include="MatlabTest.fs" /> | ||
<Compile Include="AcousticEventDetectionTest.fs" /> | ||
<Compile Include="GetAcousticEventsTest.fs" /> | ||
<Compile Include="EventPatternRecogTest.fs" /> | ||
<Compile Include="SpectralPeakTrackTest.fs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" /> | ||
<PackageReference Include="FSharp.Core" Version="4.7.0" /> | ||
<PackageReference Include="FsCheck" Version="3.0.0-alpha4" /> | ||
<PackageReference Include="FsCheck.Xunit" Version="3.0.0-alpha4" /> | ||
<PackageReference Include="FsUnit.xUnit" Version="3.8.0" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" /> | ||
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="xunit" Version="2.4.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Acoustics.Shared.FSharp\Acoustics.Shared.FSharp.fsproj" /> | ||
<ProjectReference Include="..\..\src\AED\AED.fsproj" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters