This repository has been archived by the owner on May 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
PingCastleCloud.csproj
186 lines (184 loc) · 8.58 KB
/
PingCastleCloud.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{138C3C69-1245-4BBA-87B5-075E7140B826}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>PingCastleCloud</RootNamespace>
<AssemblyName>PingCastleCloud</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<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' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>pingcastle.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.IO.Compression" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel" />
<Reference Include="System.Web" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<Compile Include="Analyzer\Analyzer.cs" />
<Compile Include="Common\JsonSerialization.cs" />
<Compile Include="ConsoleMenu.cs" />
<Compile Include="Credentials\CredentialBase.cs" />
<Compile Include="Credentials\IAzureCredential.cs" />
<Compile Include="Credentials\UserCredential.cs" />
<Compile Include="Data\HealthCheckCloudData.cs" />
<Compile Include="Export\ExportAsGuest.cs" />
<Compile Include="License.cs" />
<Compile Include="Logs\LoggingHandler.cs" />
<Compile Include="Logs\SazGenerator.cs" />
<Compile Include="PingCastleCloudException.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PublicServices\OpenIDConfiguration.cs" />
<Compile Include="PublicServices\PublicService.cs" />
<Compile Include="PublicServices\TenantBrandingInfo.cs" />
<Compile Include="PublicServices\UserRealmCT.cs" />
<Compile Include="PublicServices\UserRealmCTRequest.cs" />
<Compile Include="PublicServices\UserRealmV1.cs" />
<Compile Include="PublicServices\UserRealmSRF.cs" />
<Compile Include="PublicServices\UserRealmV2.cs" />
<Compile Include="Reports\ReportBase.cs" />
<Compile Include="Reports\ReportMain.cs" />
<Compile Include="RESTServices\EndPointAttribute.cs" />
<Compile Include="RESTServices\AzureServiceAttribute.cs" />
<Compile Include="RESTServices\ClientIDs.cs" />
<Compile Include="Constants.cs" />
<Compile Include="RESTServices\Azure\AzureADConnectApi.cs" />
<Compile Include="RESTServices\Azure\GraphAPI.cs" />
<Compile Include="RESTServices\IAzureService.cs" />
<Compile Include="RESTServices\Azure\ManagementApi.cs" />
<Compile Include="RESTServices\Azure\ProvisioningApi.cs" />
<Compile Include="RESTServices\RESTClientBase.cs" />
<Compile Include="Credentials\CertificateCredential.cs" />
<Compile Include="Rules\GuestUserAccessRestriction2.cs" />
<Compile Include="Rules\GuestUserAccessRestriction1.cs" />
<Compile Include="Rules\UserRegisterApplications.cs" />
<Compile Include="Rules\UserConsentCompanyData.cs" />
<Compile Include="Rules\ADConnectVersion1.cs" />
<Compile Include="Tokens\ChallengeResponse.cs" />
<Compile Include="Tokens\CookieManager.cs" />
<Compile Include="Common\HttpClientHelper.cs" />
<Compile Include="Credentials\PRTCredential.cs" />
<Compile Include="Tokens\JwtHeader.cs" />
<Compile Include="Tokens\JwtPayload.cs" />
<Compile Include="Tokens\JwtToken.cs" />
<Compile Include="RESTServices\Azure\MicrosoftGraph.cs" />
<Compile Include="RESTServices\O365\O365Api.cs" />
<Compile Include="Tokens\Token.cs" />
<Compile Include="Tokens\TokenCache.cs" />
<Compile Include="Tokens\TokenFactory.cs" />
<Compile Include="Rules\ADConnectVersion.cs" />
<Compile Include="Rules\CustomRulesSettings.cs" />
<Compile Include="Rules\RuleAttribute.cs" />
<Compile Include="Rules\RuleBase.cs" />
<Compile Include="Rules\RuleSet.cs" />
<Compile Include="Tasks.cs" />
<Compile Include="Template\TemplateManager.cs" />
<Compile Include="UI\AuthenticationDialog.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="UI\AuthenticationDialog.Designer.cs">
<DependentUpon>AuthenticationDialog.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Rules\RuleDescription.resx">
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="UI\AuthenticationDialog.resx">
<DependentUpon>AuthenticationDialog.cs</DependentUpon>
</EmbeddedResource>
<None Include="App.config" />
<EmbeddedResource Include="Template\bootstrap-table.min.css.gz" />
<EmbeddedResource Include="Template\bootstrap-table.min.js.gz" />
<EmbeddedResource Include="Template\bootstrap.min.css.gz" />
<EmbeddedResource Include="Template\jquery.min.js.gz" />
<EmbeddedResource Include="Template\popper.min.js.gz" />
<Content Include="pingcastle.ico" />
<Content Include="Template\ProcessTemplate.ps1" />
<EmbeddedResource Include="Template\ReportBase.css.gz" />
<EmbeddedResource Include="Template\ReportBase.js.gz" />
<EmbeddedResource Include="Template\responsivetemplate.html.gz" />
<EmbeddedResource Include="Template\bootstrap.min.js.gz" />
<None Include="azure-pipelines.yml" />
<None Include="packages.config" />
<EmbeddedResource Include="Template\ReportMain.js.gz" />
</ItemGroup>
<ItemGroup>
<Content Include="Template\ReportBase.css" />
<Content Include="Template\ReportBase.js" />
<Content Include="Template\ReportMain.js" />
<Content Include="Template\responsivetemplate.html" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>cd $(ProjectDir)\template
powershell.exe -ExecutionPolicy Bypass -NoProfile -NonInteractive -File "ProcessTemplate.ps1"</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>SET PATH=%25PATH%25;"C:\Program Files (x86)\Windows Kits\8.0\bin\x86"
SET SIGN_SHA256=signtool.exe sign /d "PingCastle Cloud" /tr http://timestamp.digicert.com /td sha256 /fd sha256 /n "Ping Castle SAS" /a
SET SIGN_SHA256_DEBUG=signtool.exe sign /d "PingCastle Cloud" /td sha256 /fd sha256 /n "Ping Castle SAS" /a
@echo ================
@echo signature
@echo ================
IF /I "$(COMPUTERNAME)" == "DESKTOP-QCK4J75" (
IF /I "$(ConfigurationName)" == "Release" (
%25SIGN_SHA256%25 "$(TargetPath)"
)
IF /I "$(ConfigurationName)" == "Debug" (
%25SIGN_SHA256_DEBUG%25 "$(TargetPath)"
)
)</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>