-
Notifications
You must be signed in to change notification settings - Fork 67
/
CSharpProxyGenerator.csproj
26 lines (22 loc) · 1.21 KB
/
CSharpProxyGenerator.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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\CustomizationPackage.props" />
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<CommerceProxyGeneratorApplicationType>CSharpExtensions</CommerceProxyGeneratorApplicationType>
<AssemblyName>Contoso.Commerce.RetailProxy.Extension</AssemblyName>
<RootNamespace>Contoso.Commerce.RetailProxy.Extension</RootNamespace>
<DefaultLanguage>en-US</DefaultLanguage>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Dynamics.Commerce.Tools.ExtensionsProxyGenerator.AspNetCore" Version="$(CommerceChannelPackagesVersion)" />
<PackageReference Include="Microsoft.Dynamics.Commerce.Proxy.ScaleUnit" Version="$(CommerceChannelPackagesVersion)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\CommerceRuntime\CommerceRuntime.csproj" />
</ItemGroup>
<!--Provide the path to the commerce runtime extension dll file.-->
<ItemGroup>
<RetailServerExtensionAssemblies Include="..\..\CommerceRuntime\bin\$(Configuration)\net8.0\CommerceRuntime.dll" />
</ItemGroup>
</Project>