forked from AuthorizeNet/sample-code-csharp
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSampleCode_DotNet_Core.csproj
More file actions
Latest commit
44 lines (35 loc) · 1.24 KB
/
Copy pathSampleCode_DotNet_Core.csproj
File metadata and controls
44 lines (35 loc) · 1.24 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroupLabel="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>
<CompileRemove="packages\**" />
<CompileRemove="SampleCodeTest\**" />
<EmbeddedResourceRemove="packages\**" />
<EmbeddedResourceRemove="SampleCodeTest\**" />
<NoneRemove="packages\**" />
<NoneRemove="SampleCodeTest\**" />
</ItemGroup>
<ItemGroup>
<NoneRemove="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReferenceInclude="Microsoft.Extensions.Logging"Version="2.1.1" />
<PackageReferenceInclude="Microsoft.Extensions.Logging.Abstractions"Version="2.1.1" />
<PackageReferenceInclude="Microsoft.Extensions.Logging.Debug"Version="2.1.1" />
</ItemGroup>
<ItemGroup>
<ReferenceInclude="AuthorizeNET">
<HintPath>DotNetCoreReleaseArtifacts\AuthorizeNET.dll</HintPath>
</Reference>
</ItemGroup>
</Project>