forked from CyberSource/cybersource-rest-samples-csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcybersource-rest-samples-netcore.csproj
73 lines (63 loc) · 2.48 KB
/
cybersource-rest-samples-netcore.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>SampleCodeNetCore</RootNamespace>
<AssemblyName>SampleCodeNetCore</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>bin\Debug</OutputPath>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\Release</OutputPath>
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Compile Remove="logs\**" />
<Compile Remove="packages\**" />
<Compile Remove="Source\lib\net461\**" />
<Compile Remove="Source\Properties\**" />
<EmbeddedResource Remove="logs\**" />
<EmbeddedResource Remove="packages\**" />
<EmbeddedResource Remove="Source\lib\net461\**" />
<EmbeddedResource Remove="Source\Properties\**" />
<None Remove="logs\**" />
<None Remove="packages\**" />
<None Remove="Source\lib\net461\**" />
<None Remove="Source\Properties\**" />
</ItemGroup>
<ItemGroup>
<None Remove="packages.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CyberSource.Authentication.NetStandard" Version="0.0.1.6" />
<PackageReference Include="CyberSource.Rest.Client.NetStandard" Version="0.0.1.14" />
<PackageReference Include="jose-jwt" Version="2.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="NLog" Version="4.7.4" />
<PackageReference Include="NLog.Schema" Version="4.7.4" />
<PackageReference Include="RestSharp" Version="106.12.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="ApiSdk">
<HintPath>Source\lib\netstandard\ApiSdk.dll</HintPath>
<Private>true</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="DEL /S /Q obj\Debug\*" />
</Target>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="DEL /S /Q obj\Debug\*" />
</Target>
</Project>