868e663db7
add `/p:MergeWith` example.
15 lines
211 B
C#
15 lines
211 B
C#
using System;
|
|
using Xunit;
|
|
|
|
namespace XUnitTestProject3
|
|
{
|
|
public class UnitTest3
|
|
{
|
|
[Fact]
|
|
public void Test3()
|
|
{
|
|
new ClassLibrary3.Class3().Method();
|
|
}
|
|
}
|
|
}
|