Skip to content

Commit ca23b78

Browse files
committed
hopefully build
1 parent 4260c85 commit ca23b78

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

build.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ task compile -depends clean {
3434

3535
exec { & $base_dir\.nuget\Nuget.exe restore $base_dir\AutoMapper.Collection.sln }
3636

37+
exec { dotnet restore $base_dir\AutoMapper.Collection.sln }
38+
3739
exec { dotnet build $base_dir\AutoMapper.Collection.sln -c $config --version-suffix=$buildSuffix -v q /nologo }
3840

3941
exec { dotnet pack $source_dir\AutoMapper.Collection -c $config --output $artifacts_dir --version-suffix $version}

src/AutoMapper.Collection.Tests/AutoMapper.Collection.Tests.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
<HintPath>..\..\packages\FluentAssertions.4.15.0\lib\net45\FluentAssertions.Core.dll</HintPath>
4747
<Private>True</Private>
4848
</Reference>
49-
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
5049
<Reference Include="System" />
5150
<Reference Include="System.Core" />
5251
<Reference Include="System.ValueTuple, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">

src/AutoMapper.Collection.Tests/OptionsTests.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
using AutoMapper.EquivalencyExpression;
22
using AutoMapper.Mappers;
33
using FluentAssertions;
4-
using Microsoft.VisualStudio.TestTools.UnitTesting;
54
using System.Collections.Generic;
65

76
namespace AutoMapper.Collection
87
{
9-
[TestClass]
10-
public class OptionsTest
8+
public class OptionsTests
119
{
12-
[TestMethod]
1310
public void Should_Retain_Options_Passed_In_Map()
1411
{
1512
var collectionTestValue = 0;

0 commit comments

Comments
 (0)