2014-02-16 07:56:27 +00:00
|
|
|
|
<?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>{20D7CBA3-5B6D-40B0-8D28-4C9A58E4FFBC}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
<RootNamespace>NBTExplorer.Model</RootNamespace>
|
|
|
|
|
<AssemblyName>NBTModel</AssemblyName>
|
|
|
|
|
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
<TargetFrameworkProfile />
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
2014-03-31 04:10:39 +00:00
|
|
|
|
<DefineConstants>TRACE;DEBUG;WINDOWS</DefineConstants>
|
2014-02-16 07:56:27 +00:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\Release\</OutputPath>
|
2014-03-31 04:10:39 +00:00
|
|
|
|
<DefineConstants>TRACE;WINDOWS</DefineConstants>
|
2014-02-16 07:56:27 +00:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="Substrate">
|
|
|
|
|
<HintPath>..\References\Substrate.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Data" />
|
|
|
|
|
<Reference Include="System.Xml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2014-02-20 06:58:40 +00:00
|
|
|
|
<Compile Include="Data\CompoundTagContainer.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\CubicRegionDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\CubicRegionFile.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\DataNode.cs" />
|
|
|
|
|
<Compile Include="Data\DataNodeCollection.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\DirectoryDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\FileTypeRegistry.cs" />
|
2017-11-24 07:42:34 +00:00
|
|
|
|
<Compile Include="Data\Nodes\TagLongArrayDataNode.cs" />
|
2015-04-18 20:37:10 +00:00
|
|
|
|
<Compile Include="Data\Nodes\TagShortArrayDataNode.cs" />
|
2014-03-31 04:10:39 +00:00
|
|
|
|
<Compile Include="FilterExpressionParser.cs" />
|
2014-02-16 07:56:27 +00:00
|
|
|
|
<Compile Include="Interop\FormRegistry.cs" />
|
|
|
|
|
<Compile Include="Interop\NbtClipboardController.cs" />
|
|
|
|
|
<Compile Include="Interop\NbtClipboardData.cs" />
|
2014-02-20 06:58:40 +00:00
|
|
|
|
<Compile Include="Data\ListTagContainer.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\NbtFileDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\NodeCapabilities.cs" />
|
|
|
|
|
<Compile Include="NbtPath.cs" />
|
2014-02-16 07:56:27 +00:00
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
2014-02-20 06:58:40 +00:00
|
|
|
|
<Compile Include="Data\Nodes\RegionChunkDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\RegionFileDataNode.cs" />
|
2014-02-16 07:56:27 +00:00
|
|
|
|
<Compile Include="Search\SearchRule.cs" />
|
2014-02-20 06:58:40 +00:00
|
|
|
|
<Compile Include="Data\Nodes\TagByteArrayDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\TagByteDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\TagCompoundDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\TagContainerInterface.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\TagDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\TagDoubleDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\TagFloatDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\TagIntArrayDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\TagIntDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\TagKey.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\TagListDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\TagLongDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\TagShortDataNode.cs" />
|
|
|
|
|
<Compile Include="Data\Nodes\TagStringDataNode.cs" />
|
2015-02-27 04:21:44 +00:00
|
|
|
|
<Compile Include="Utility\NaturalComparer.cs" />
|
2014-02-16 07:56:27 +00:00
|
|
|
|
<Compile Include="Utility\SnapshotList.cs" />
|
|
|
|
|
</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>
|