-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGrand.Plugin.Misc.EuropaCheckVat.csproj
70 lines (64 loc) · 3.41 KB
/
Grand.Plugin.Misc.EuropaCheckVat.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Authors>UNIT-SOFT Sp. z o.o.</Authors>
<Company>UNIT-SOFT Sp. z o.o.</Company>
<Copyright>Copyright © UNIT-SOFT Sp. z o.o.</Copyright>
<PackageProjectUrl>https://grandnode.com/</PackageProjectUrl>
<TieredCompilation>true</TieredCompilation>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\..\Grand.Web\Plugins\Misc.EuropaCheckVat\</OutputPath>
<OutDir>$(OutputPath)</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\..\Grand.Web\Plugins\Misc.EuropaCheckVat\</OutputPath>
<OutDir>$(OutputPath)</OutDir>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<RemoveDir Directories="..\..\Grand.Web\Plugins\Misc.EuropaCheckVat\refs" />
</Target>
<ItemGroup>
<PackageReference Include="System.ServiceModel.Duplex" Version="4.7.0" />
<PackageReference Include="System.ServiceModel.Http" Version="4.7.0" />
<PackageReference Include="System.ServiceModel.NetTcp" Version="4.7.0" />
<PackageReference Include="System.ServiceModel.Security" Version="4.7.0" />
<PackageReference Include="System.ServiceModel.Primitives" Version="4.7.0" />
<PackageReference Include="System.Private.ServiceModel" Version="4.7.0" />
</ItemGroup>
<Target Name="CopyFile" AfterTargets="AfterBuild">
<ItemGroup>
<CopyFiles1 Include="$(NuGetPackageRoot)\system.servicemodel.duplex\4.7.0\lib\netstandard2.0\*.dll" />
<CopyFiles2 Include="$(NuGetPackageRoot)\system.servicemodel.http\4.7.0\lib\netstandard2.0\*.dll" />
<CopyFiles3 Include="$(NuGetPackageRoot)\system.servicemodel.nettcp\4.7.0\lib\netstandard2.0\*.dll" />
<CopyFiles4 Include="$(NuGetPackageRoot)\system.servicemodel.security\4.7.0\lib\netstandard2.0\*.dll" />
<CopyFiles5 Include="$(NuGetPackageRoot)\system.servicemodel.primitives\4.7.0\lib\netstandard2.0\*.dll" />
<CopyFiles6 Include="$(NuGetPackageRoot)\system.private.servicemodel\4.7.0\lib\netstandard2.0\*.dll" />
</ItemGroup>
<Copy SourceFiles="@(CopyFiles1)" DestinationFolder="..\..\Grand.Web\Plugins\Misc.EuropaCheckVat\" />
<Copy SourceFiles="@(CopyFiles2)" DestinationFolder="..\..\Grand.Web\Plugins\Misc.EuropaCheckVat\" />
<Copy SourceFiles="@(CopyFiles3)" DestinationFolder="..\..\Grand.Web\Plugins\Misc.EuropaCheckVat\" />
<Copy SourceFiles="@(CopyFiles4)" DestinationFolder="..\..\Grand.Web\Plugins\Misc.EuropaCheckVat\" />
<Copy SourceFiles="@(CopyFiles5)" DestinationFolder="..\..\Grand.Web\Plugins\Misc.EuropaCheckVat\" />
<Copy SourceFiles="@(CopyFiles6)" DestinationFolder="..\..\Grand.Web\Plugins\Misc.EuropaCheckVat\" />
</Target>
<ItemGroup>
<ProjectReference Include="..\..\Grand.Domain\Grand.Domain.csproj">
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="..\..\Grand.Core\Grand.Core.csproj">
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="..\..\Grand.Services\Grand.Services.csproj">
<Private>false</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Update="logo.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<WCFMetadata Include="Connected Services" />
</ItemGroup>
</Project>