-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathAuth0.OidcClient.iOS.csproj
46 lines (46 loc) · 1.9 KB
/
Auth0.OidcClient.iOS.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
<Project Sdk="Xamarin.Legacy.Sdk/0.2.0-alpha4">
<PropertyGroup>
<TargetFrameworks>xamarin.ios10;net8.0-ios</TargetFrameworks>
<RootNamespace>Auth0.OidcClient</RootNamespace>
<AssemblyName>Auth0.OidcClient</AssemblyName>
<AssemblyTitle>Auth0.OidcClient.iOS</AssemblyTitle>
<Product>Auth0.OidcClient</Product>
<AssemblyVersion>3.6.0</AssemblyVersion>
<AssemblyFileVersion>3.6.0</AssemblyFileVersion>
<Version>3.6.0</Version>
<NeutralLanguage>en</NeutralLanguage>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<DefineConstants>$(DefineConstants);</DefineConstants>
<LangVersion>default</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Debug' ">
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Release' ">
<DebugType>portable</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="ActivityMediator.cs" />
<Compile Include="AutoSelectBrowser.cs" />
<Compile Include="IOSBrowserBase.cs" />
<Compile Include="Auth0Client.cs" />
<Compile Include="ASWebAuthenticationSessionBrowser.cs" />
<Compile Include="ASWebAuthenticationSessionOptions.cs" />
<Compile Include="SFAuthenticationSessionBrowser.cs" />
<Compile Include="SFSafariViewControllerBrowser.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Auth0.OidcClient.Core\Auth0.OidcClient.Core.csproj">
<Project>{1F79DB59-F3A8-45B7-972B-ECD15259D1C9}</Project>
<Name>Auth0.OidcClient.Core</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="IdentityModel.OidcClient">
<Version>5.2.1</Version>
</PackageReference>
</ItemGroup>
</Project>