-
Notifications
You must be signed in to change notification settings - Fork 0
/
MissinKit.csproj
73 lines (73 loc) · 3.33 KB
/
MissinKit.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
<?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>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{9181BB83-CEE9-4F0C-86E8-BD3F4BB20E52}</ProjectGuid>
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<RootNamespace>MissinKit</RootNamespace>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AssemblyName>MissinKit</AssemblyName>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<!--<PublishRepositoryUrl>true</PublishRepositoryUrl>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>-->
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<DocumentationFile>bin\Release\MissinKit.xml</DocumentationFile>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Xamarin.iOS" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<Compile Include="Interop\VariadicArguments\DoubleArgument.cs" />
<Compile Include="Interop\VariadicArguments\Int32Argument.cs" />
<Compile Include="Interop\VariadicArguments\Int64Argument.cs" />
<Compile Include="Interop\VariadicArguments\StringArgument.cs" />
<Compile Include="Interop\VariadicArguments\VariadicArgument.cs" />
<Compile Include="Interop\VariadicArguments\VariadicArgumentList.cs" />
<Compile Include="Net\Reachability.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="UI\DrawerController.cs" />
<Compile Include="Utilities\L10n.cs" />
<Compile Include="Utilities\MachineEpsilon.cs" />
<Compile Include="Utilities\NSDateExtensions.cs" />
<Compile Include="Utilities\NSStringUtility.cs" />
<Compile Include="Utilities\StringExtensions.cs" />
<Compile Include="Utilities\UIViewExtensions.cs" />
<Compile Include="Utilities\UpdateWatcher.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json">
<Version>12.0.1</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
</Project>