This repository has been archived by the owner on Nov 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathP3D-Legacy Shared.csproj
80 lines (80 loc) · 4.47 KB
/
P3D-Legacy Shared.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{13E2FD75-83F6-40CC-BB3A-829E0E834D45}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>P3D.Legacy.Shared</RootNamespace>
<AssemblyName>P3D Legacy Shared</AssemblyName>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkProfile>Profile44</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
</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>
<Compile Include="Data\EncodedString.cs" />
<Compile Include="Data\GameJoltYaml.cs" />
<Compile Include="Data\LocalizationInfo.cs" />
<Compile Include="Data\ModificationInfo.cs" />
<Compile Include="Storage\Folders\BaseProfileFolder.cs" />
<Compile Include="Extensions\AsyncExtensions.cs" />
<Compile Include="Extensions\CultureInfoExtensions.cs" />
<Compile Include="Extensions\LinqExtensions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Storage\Files\BaseTranslationFile.cs" />
<Compile Include="Storage\Files\ModificationFile.cs" />
<Compile Include="Storage\Files\TranslationCSVFile.cs" />
<Compile Include="Storage\Folders\MainFolder.cs" />
<Compile Include="Storage\Folders\ModificationFolder.cs" />
<Compile Include="Storage\Folders\ModificationsFolder.cs" />
<Compile Include="Storage\Folders\TranslationFolder.cs" />
<Compile Include="Storage\Folders\TranslationsFolder.cs" />
<Compile Include="Utils\LaunchArgsHandler.cs" />
<Compile Include="Utils\Localization.cs" />
<Compile Include="Utils\StringEncoding.cs" />
<Compile Include="Utils\StringEncryption.cs" />
<Compile Include="YamlConverters\CultureInfoConverter.cs" />
<Compile Include="YamlConverters\EncodedStringConverter.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="CsvHelper, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8c4959082be5c823, processorArchitecture=MSIL">
<HintPath>$(SolutionDir)\packages\CsvHelper.2.16.3.0\lib\portable40-net40+sl5+win8+wp8+wpa81\CsvHelper.dll</HintPath>
</Reference>
<Reference Include="NDesk.Options, Version=0.2.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>$(SolutionDir)\packages\NDesk.Options.0.2.1\lib\NDesk.Options.dll</HintPath>
</Reference>
<Reference Include="PCLExt.FileStorage, Version=1.3.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\PCLExt.FileStorage.1.3.0.0\lib\portable-net45+win8+wpa81\PCLExt.FileStorage.dll</HintPath>
</Reference>
<Reference Include="PCLExt.FileStorage.Abstractions, Version=1.3.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\PCLExt.FileStorage.1.3.0.0\lib\portable-net45+win8+wpa81\PCLExt.FileStorage.Abstractions.dll</HintPath>
</Reference>
<Reference Include="YamlDotNet, Version=4.2.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\YamlDotNet.4.2.2\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1\YamlDotNet.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
</Project>