forked from klenin/Yuzu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Yuzu.Mac.csproj
98 lines (98 loc) · 3.94 KB
/
Yuzu.Mac.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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{5F16D8E4-A0F1-4341-83A0-3897FC44EBB8}</ProjectGuid>
<ProjectTypeGuids>{A3F8F2AB-B479-4A4A-A458-A89E7DC349F1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<RootNamespace>Yuzu</RootNamespace>
<AssemblyName>Yuzu</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<TargetFrameworkIdentifier>Xamarin.Mac</TargetFrameworkIdentifier>
<MonoMacResourcePrefix>Resources</MonoMacResourcePrefix>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
</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>
<EnableCodeSigning>false</EnableCodeSigning>
<CreatePackage>false</CreatePackage>
<EnablePackageSigning>false</EnablePackageSigning>
<IncludeMonoRuntime>false</IncludeMonoRuntime>
<UseSGen>false</UseSGen>
<HttpClientHandler>
</HttpClientHandler>
<TlsProvider>
</TlsProvider>
<LinkMode>None</LinkMode>
<XamMacArch>
</XamMacArch>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AOTMode>None</AOTMode>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<DefineConstants>
</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<EnableCodeSigning>false</EnableCodeSigning>
<CreatePackage>false</CreatePackage>
<EnablePackageSigning>false</EnablePackageSigning>
<IncludeMonoRuntime>false</IncludeMonoRuntime>
<UseSGen>false</UseSGen>
<HttpClientHandler>
</HttpClientHandler>
<TlsProvider>
</TlsProvider>
<LinkMode>None</LinkMode>
<XamMacArch>
</XamMacArch>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AOTMode>None</AOTMode>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="Xamarin.Mac" />
</ItemGroup>
<ItemGroup>
<Compile Include="Yuzu\BinaryCommon.cs" />
<Compile Include="Yuzu\BinaryDeserializer.cs" />
<Compile Include="Yuzu\BinaryGenerators.cs" />
<Compile Include="Yuzu\BinarySerializer.cs" />
<Compile Include="Yuzu\Clone.cs" />
<Compile Include="Yuzu\CloneGenerator.cs" />
<Compile Include="Yuzu\CloneObject.cs" />
<Compile Include="Yuzu\CloneUtils.cs" />
<Compile Include="Yuzu\Code.cs" />
<Compile Include="Yuzu\DictOfObjects.cs" />
<Compile Include="Yuzu\Grisu\DiyFp.cs" />
<Compile Include="Yuzu\Grisu\Grisu.cs" />
<Compile Include="Yuzu\Grisu\GrisuDouble.cs" />
<Compile Include="Yuzu\Grisu\PowersOfTenCache.cs" />
<Compile Include="Yuzu\JsonHelpers.cs" />
<Compile Include="Yuzu\ReaderDeserializer.cs" />
<Compile Include="Yuzu\Surrogates.cs" />
<Compile Include="Yuzu\UnsafeReader.cs" />
<Compile Include="Yuzu\JsonDeserializer.cs" />
<Compile Include="Yuzu\JsonGenerators.cs" />
<Compile Include="Yuzu\JsonSerializer.cs" />
<Compile Include="Yuzu\Meta.cs" />
<Compile Include="Yuzu\ProtoBuf.cs" />
<Compile Include="Yuzu\Utils.cs" />
<Compile Include="Yuzu\Yuzu.cs" />
<Compile Include="Yuzu\Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Mac\Xamarin.Mac.CSharp.targets" />
</Project>