-
Notifications
You must be signed in to change notification settings - Fork 40
/
StoreBroker.pssproj
69 lines (69 loc) · 3.07 KB
/
StoreBroker.pssproj
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>6CAFC0C6-A428-4d30-A9F9-700E829FEA51</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>StoreBroker</RootNamespace>
<AssemblyName>StoreBroker</AssemblyName>
<Name>StoreBroker</Name>
<DebugArguments>
</DebugArguments>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Folder Include="Documentation\" />
<Folder Include="Extensions\" />
<Folder Include="PDP\" />
<Folder Include="StoreBroker\" />
<Folder Include="Tests\" />
</ItemGroup>
<ItemGroup>
<Compile Include="CHANGELOG.md" />
<Compile Include="CONTRIBUTING.md" />
<Compile Include="Documentation\GOVERNANCE.md" />
<Compile Include="Documentation\USAGE.md" />
<Compile Include="Documentation\PDP.md" />
<Compile Include="Documentation\RESTPROXY.md" />
<Compile Include="Documentation\SETUP.md" />
<Compile Include="Extensions\ConvertFrom-ExistingIapSubmission.ps1" />
<Compile Include="Extensions\ConvertFrom-ExistingSubmission.ps1" />
<Compile Include="LICENSE" />
<Compile Include="PDP\InAppProductDescription.xml" />
<Compile Include="PDP\InAppProductDescription.xsd" />
<Compile Include="PDP\ProductDescription.xml" />
<Compile Include="PDP\ProductDescription.xsd" />
<Compile Include="README.md" />
<Compile Include="StoreBroker\AppConfigTemplate.json" />
<Compile Include="StoreBroker\Helpers.ps1" />
<Compile Include="StoreBroker\IapConfigTemplate.json" />
<Compile Include="StoreBroker\NugetTools.ps1" />
<Compile Include="StoreBroker\PackageTool.ps1" />
<Compile Include="StoreBroker\StoreBroker.psd1" />
<Compile Include="StoreBroker\StoreIngestionApi.psm1" />
<Compile Include="StoreBroker\StoreIngestionApplicationApi.ps1" />
<Compile Include="StoreBroker\StoreIngestionIapApi.ps1" />
<Compile Include="StoreBroker\StoreIngestionFlightingApi.ps1" />
<Compile Include="StoreBroker\Telemetry.ps1" />
<Compile Include="Tests\PackageTool.Tests.ps1" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Target Name="Build" />
</Project>