-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDargon.RADS.csproj
119 lines (119 loc) · 5.65 KB
/
Dargon.RADS.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
<?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>{ABF2ED7E-F5A9-4A4D-A983-3D356A126A02}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Dargon.RADS</RootNamespace>
<AssemblyName>Dargon.RADS</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">.</SolutionDir>
<RestorePackages>true</RestorePackages>
</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>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<UseVSHostingProcess>true</UseVSHostingProcess>
</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>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="Ionic.Zip, Version=1.9.3.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\DotNetZip.1.9.3\lib\net20\Ionic.Zip.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="NLog, Version=3.1.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\NLog.3.1.0.0\lib\net45\NLog.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="zlib.net, Version=1.0.3.0, Culture=neutral, PublicKeyToken=47d7877cb3620160">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\zlib.net.1.0.4.0\lib\zlib.net.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Archives\RiotArchive.cs" />
<Compile Include="Archives\RafHeader.cs" />
<Compile Include="Archives\RafEntry.cs" />
<Compile Include="Archives\RafUtil.cs" />
<Compile Include="Archives\RiotArchiveCollectionCache.cs" />
<Compile Include="Archives\RiotArchiveCollectionLoader.cs" />
<Compile Include="Archives\RafExtensions.cs" />
<Compile Include="Archives\RiotArchiveLoader.cs" />
<Compile Include="Manifest\Utilities\MutableDargonNodeWithLazyDataStream.cs" />
<Compile Include="Manifest\ReleaseManifestDataStreamComponentFactory.cs" />
<Compile Include="Utilities\ConcatList.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Manifest\ReleaseManifest.cs" />
<Compile Include="Manifest\ReleaseManifestLoader.cs" />
<Compile Include="Manifest\Extensions.ReleaseManifest.cs" />
<Compile Include="Manifest\ReleaseManifestWriter.cs" />
<Compile Include="Manifest\ReleaseManifestStringTable.cs" />
<Compile Include="RiotProject.cs" />
<Compile Include="RiotProjectLoader.cs" />
<Compile Include="RiotProjectType.cs" />
<Compile Include="RiotSolution.cs" />
<Compile Include="Manifest\ReleaseManifestDirectoryDescriptor.cs" />
<Compile Include="Manifest\ReleaseManifestFileEntryDescriptor.cs" />
<Compile Include="RiotSolutionLoader.cs" />
</ItemGroup>
<ItemGroup>
<None Include="License - Dargon.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Dargon.IO\Dargon.IO.csproj">
<Project>{d28af7fa-367c-472c-954d-694319528208}</Project>
<Name>Dargon.IO</Name>
</ProjectReference>
<ProjectReference Include="..\Dargon.Utilities\Dargon.Utilities.csproj">
<Project>{d2a303a1-665f-4f6f-9bc6-3d91a8f02978}</Project>
<Name>Dargon.Utilities</Name>
</ProjectReference>
<ProjectReference Include="..\ItzWarty.Commons\ItzWarty.Commons.csproj">
<Project>{097b6b08-4034-408a-b3c0-a12e8f9e8893}</Project>
<Name>ItzWarty.Commons</Name>
</ProjectReference>
<ProjectReference Include="..\ItzWarty.Proxies.Api\ItzWarty.Proxies.Api.csproj">
<Project>{6aaa4f38-0c18-4d29-b7a2-edddd08dc5ff}</Project>
<Name>ItzWarty.Proxies.Api</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- 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>