This repository has been archived by the owner on Dec 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathreWZ.csproj
56 lines (56 loc) · 2.43 KB
/
reWZ.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform>AnyCPU</Platform>
<ProjectGuid>{85F7FE6D-63AC-44A1-83D2-CE5204E7535E}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>reWZ</RootNamespace>
<AssemblyName>reWZ</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<PlatformTarget>AnyCPU</PlatformTarget>
<NoWarn>1591</NoWarn>
<Prefer32Bit>false</Prefer32Bit>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<OutputPath>bin\Release\</OutputPath>
<DocumentationFile>bin\Release\reWZ.XML</DocumentationFile>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<UseVSHostingProcess>false</UseVSHostingProcess>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
</ItemGroup>
<ItemGroup>
<Compile Include="UnDXT.cs" />
<Compile Include="UsefulThings\BytePointerObject.cs" />
<Compile Include="UsefulThings\PointerStream.cs" />
<Compile Include="WZAES.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="WZBinaryReader.cs" />
<Compile Include="WZException.cs" />
<Compile Include="WZFile.cs" />
<Compile Include="WZProperties\WZAudioProperty.cs" />
<Compile Include="WZProperties\WZImage.cs" />
<Compile Include="WZProperties\SimpleProperties.cs" />
<Compile Include="WZProperties\WZCanvasProperty.cs" />
<Compile Include="WZProperties\WZDirectory.cs" />
<Compile Include="WZProperties\WZObject.cs" />
<Compile Include="WZProperties\WZProperty.cs" />
<Compile Include="WZProperties\WZSubProperty.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>