master
wufan 2 months ago
parent e9adbfe80c
commit 09854f01b4

File diff suppressed because it is too large Load Diff

@ -0,0 +1,15 @@
namespace TradeManageNew.APIClients.ShopifyApi
{
public class ShopifyAPIClientMisc
{
/// <summary>
/// 沙箱环境地址
/// </summary>
public const string SANDBOX_URL = "http://192.168.1.54:3000";
/// <summary>
/// 生产环境地址
/// </summary>
public const string PRODUCTION_URL = "";
}
}

@ -2088,6 +2088,8 @@
<Compile Include="APIClients\FedexApi\Tests\TestBase.cs" />
<Compile Include="APIClients\FedexApi\Utils\JsonConverters.cs" />
<Compile Include="APIClients\MemoryCacheKeys.cs" />
<Compile Include="APIClients\ShopifyApi\ShopifyAPIClient.cs" />
<Compile Include="APIClients\ShopifyApi\ShopifyAPIClientMisc.cs" />
<Compile Include="API_OrderInfoServiceNew.cs" />
<Compile Include="BaseDataNew.asmx.cs">
<DependentUpon>BaseDataNew.asmx</DependentUpon>

@ -155,4 +155,15 @@
</dependentAssembly>
</assemblyBinding>
</runtime>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
<add name="Access-Control-Allow-Headers" value="*" />
<add name="Access-Control-Allow-Methods" value="*" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
Loading…
Cancel
Save