-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathSampleCodeTest_DotNet_Core.csproj
More file actions
59 lines (48 loc) · 1.87 KB
/
Copy pathSampleCodeTest_DotNet_Core.csproj
File metadata and controls
59 lines (48 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<Company>Microsoft</Company>
<AssemblyVersion>0.9.0.0</AssemblyVersion>
<FileVersion>0.9.0.0</FileVersion>
<Version>0.9.0.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>bin\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\</OutputPath>
<Optimize>false</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Remove="SampleCode_DotNet_Core_Test\**" />
<EmbeddedResource Remove="SampleCode_DotNet_Core_Test\**" />
<None Remove="SampleCode_DotNet_Core_Test\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0-preview-20180610-02" />
<PackageReference Include="MSTest.TestAdapter" Version="1.1.12" />
<PackageReference Include="MSTest.TestFramework" Version="1.1.11" />
<PackageReference Include="NuGet.VisualStudio" Version="4.7.0" />
<PackageReference Include="NUnit" Version="3.6.0" />
<PackageReference Include="NUnit.ConsoleRunner" Version="3.8.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.8.0-alpha1" />
<PackageReference Include="xunit" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SampleCode_DotNet_Core.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<Reference Include="AuthorizeNET">
<HintPath>..\DotNetCoreReleaseArtifacts\AuthorizeNET.dll</HintPath>
</Reference>
</ItemGroup>
</Project>