Skip to content

Commit 1ffa57a

Browse files
Added Dot Net Core Proj and sln files
Added Dot Net Core Proj and sln files
1 parent e386901 commit 1ffa57a

3 files changed

+83
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0-preview-20180610-02" />
9+
<PackageReference Include="MSTest.TestAdapter" Version="1.1.12" />
10+
<PackageReference Include="MSTest.TestFramework" Version="1.1.11" />
11+
<PackageReference Include="NuGet.VisualStudio" Version="4.7.0" />
12+
<PackageReference Include="NUnit" Version="3.6.0" />
13+
<PackageReference Include="NUnit.ConsoleRunner" Version="3.8.0" />
14+
<PackageReference Include="NUnit3TestAdapter" Version="3.8.0-alpha1" />
15+
<PackageReference Include="xunit" Version="2.3.1" />
16+
</ItemGroup>
17+
18+
<ItemGroup>
19+
<ProjectReference Include="..\..\AuthorizeNET\AuthorizeNET.csproj" />
20+
<ProjectReference Include="..\SampleCodeTest_DotNet_Core.csproj" />
21+
</ItemGroup>
22+
23+
<ItemGroup>
24+
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
25+
</ItemGroup>
26+
27+
</Project>

SampleCode_DotNet_Core.csproj

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
4+
<OutputType>Exe</OutputType>
5+
</PropertyGroup>
6+
7+
<PropertyGroup>
8+
<TargetFramework>netcoreapp1.1</TargetFramework>
9+
<ApplicationIcon />
10+
<OutputTypeEx>exe</OutputTypeEx>
11+
<StartupObject />
12+
</PropertyGroup>
13+
14+
<ItemGroup>
15+
<Compile Remove="TransactionReporting\GetCustomerProfileTransactionList.cs" />
16+
</ItemGroup>
17+
18+
<ItemGroup>
19+
<ProjectReference Include="..\..\AuthorizeNET\AuthorizeNET.csproj" />
20+
</ItemGroup>
21+
22+
</Project>

SampleCode_DotNet_Core.sln

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26228.4
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleCode_DotNet_Core", "SampleCode_DotNet_Core.csproj", "{50A29DBF-957F-4ECE-AC1C-4659DEAADB65}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleCodeTest_DotNet_Core", "SampleCodeTest\SampleCodeTest_DotNet_Core.csproj", "{A0955044-8446-45AE-A8E9-2D97299E5C6A}"
9+
EndProject
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AuthorizeNET", "..\AuthorizeNET\AuthorizeNET.csproj", "{973B1ED4-CFBC-4F8D-B254-22F4F4DE784A}"
11+
EndProject
12+
Global
13+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14+
Debug|Any CPU = Debug|Any CPU
15+
Release|Any CPU = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{50A29DBF-957F-4ECE-AC1C-4659DEAADB65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{50A29DBF-957F-4ECE-AC1C-4659DEAADB65}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{50A29DBF-957F-4ECE-AC1C-4659DEAADB65}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{50A29DBF-957F-4ECE-AC1C-4659DEAADB65}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{A0955044-8446-45AE-A8E9-2D97299E5C6A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23+
{A0955044-8446-45AE-A8E9-2D97299E5C6A}.Debug|Any CPU.Build.0 = Debug|Any CPU
24+
{A0955044-8446-45AE-A8E9-2D97299E5C6A}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{A0955044-8446-45AE-A8E9-2D97299E5C6A}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{973B1ED4-CFBC-4F8D-B254-22F4F4DE784A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{973B1ED4-CFBC-4F8D-B254-22F4F4DE784A}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{973B1ED4-CFBC-4F8D-B254-22F4F4DE784A}.Release|Any CPU.ActiveCfg = Release|Any CPU
29+
{973B1ED4-CFBC-4F8D-B254-22F4F4DE784A}.Release|Any CPU.Build.0 = Release|Any CPU
30+
EndGlobalSection
31+
GlobalSection(SolutionProperties) = preSolution
32+
HideSolutionNode = FALSE
33+
EndGlobalSection
34+
EndGlobal

0 commit comments

Comments
 (0)