-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathSampleCode_DotNet_Core.csproj
44 lines (35 loc) · 1.24 KB
/
SampleCode_DotNet_Core.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<ApplicationIcon />
<OutputTypeEx>exe</OutputTypeEx>
<StartupObject />
</PropertyGroup>
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<Compile Remove="packages\**" />
<Compile Remove="SampleCodeTest\**" />
<EmbeddedResource Remove="packages\**" />
<EmbeddedResource Remove="SampleCodeTest\**" />
<None Remove="packages\**" />
<None Remove="SampleCodeTest\**" />
</ItemGroup>
<ItemGroup>
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.1.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="AuthorizeNET">
<HintPath>DotNetCoreReleaseArtifacts\AuthorizeNET.dll</HintPath>
</Reference>
</ItemGroup>
</Project>