ScratchNet.csproj 9.4 KB
Newer Older
H
Huajiang Wei 已提交
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
<?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>{79F40D09-D4EE-469F-883D-0D471E22AE20}</ProjectGuid>
    <OutputType>WinExe</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>ScratchNet</RootNamespace>
    <AssemblyName>ScratchNet</AssemblyName>
    <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
    <WarningLevel>4</WarningLevel>
    <TargetFrameworkProfile />
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <PlatformTarget>AnyCPU</PlatformTarget>
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <Prefer32Bit>false</Prefer32Bit>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <PlatformTarget>AnyCPU</PlatformTarget>
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <Prefer32Bit>false</Prefer32Bit>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="PresentationFramework.Aero" />
    <Reference Include="System" />
    <Reference Include="System.Data" />
43
    <Reference Include="System.Drawing" />
H
Huajiang Wei 已提交
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
    <Reference Include="System.Xml" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Core" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="System.Xaml">
      <RequiredTargetFramework>4.0</RequiredTargetFramework>
    </Reference>
    <Reference Include="WindowsBase" />
    <Reference Include="PresentationCore" />
    <Reference Include="PresentationFramework" />
  </ItemGroup>
  <ItemGroup>
    <ApplicationDefinition Include="App.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </ApplicationDefinition>
    <Compile Include="appearance\HideStatement.cs" />
    <Compile Include="appearance\LogStatement.cs" />
    <Compile Include="appearance\SetNextImageStatement.cs" />
    <Compile Include="appearance\SetImageStatement.cs" />
    <Compile Include="appearance\ResizeStatement.cs" />
    <Compile Include="appearance\ShowStatement.cs" />
    <Compile Include="appearance\ThinkStatement.cs" />
    <Compile Include="appearance\SayStatement.cs" />
    <Compile Include="appearance\SizeExpression.cs" />
    <Compile Include="character\Background.cs" />
    <Compile Include="character\CharacterRotationMode.cs" />
    <Compile Include="character\Game.cs" />
    <Compile Include="character\ResourceList.cs" />
    <Compile Include="control\CurrentEnviroment.cs" />
    <Compile Include="convertor\ActualWidthMinusConverter2.cs" />
    <Compile Include="convertor\ActualWidthMinusConverter.cs" />
    <Compile Include="convertor\ScriptContainerWidthConverter.cs" />
    <Compile Include="convertor\SpriteToImageConverter.cs" />
    <Compile Include="event\ClickEventHandler.cs" />
    <Compile Include="event\Events.cs" />
    <Compile Include="event\KeyEventHandler.cs" />
    <Compile Include="event\MessageEvent.cs" />
    <Compile Include="event\MessageEvetHandler.cs" />
    <Compile Include="event\StartEventHandler.cs" />
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
    <Compile Include="localization\Localize.cs" />
    <Compile Include="localization\Strings.Designer.cs">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Strings.resx</DependentUpon>
    </Compile>
    <Compile Include="localization\Strings.ja-JP.Designer.cs">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Strings.ja-JP.resx</DependentUpon>
    </Compile>
    <Compile Include="localization\Strings.zh-CN.Designer.cs">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Strings.zh-CN.resx</DependentUpon>
    </Compile>
H
Huajiang Wei 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
    <Compile Include="movement\DegreeExpression.cs" />
    <Compile Include="movement\TimedMoveStatement.cs" />
    <Compile Include="movement\MoveStatement.cs" />
    <Compile Include="movement\SetDegreeStatement.cs" />
    <Compile Include="movement\RotationStatement.cs" />
    <Compile Include="movement\SetPositionYStatement.cs" />
    <Compile Include="movement\SetPositionXStatement.cs" />
    <Compile Include="movement\SetPositionStatement.cs" />
    <Compile Include="movement\ReflectionModeStatement.cs" />
    <Compile Include="movement\SetRotationModeStatement.cs" />
    <Compile Include="movement\XPositionExpression.cs" />
    <Compile Include="movement\YPositionExpression.cs" />
    <Compile Include="ResourceList.xaml.cs">
      <DependentUpon>ResourceList.xaml</DependentUpon>
    </Compile>
    <Compile Include="ScriptPlayer.xaml.cs">
      <DependentUpon>ScriptPlayer.xaml</DependentUpon>
    </Compile>
    <Compile Include="character\Sprite.cs" />
    <Compile Include="SpriteList.xaml.cs">
      <DependentUpon>SpriteList.xaml</DependentUpon>
    </Compile>
    <Compile Include="util\Serialization.cs" />
    <Page Include="MainWindow.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Compile Include="App.xaml.cs">
      <DependentUpon>App.xaml</DependentUpon>
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="MainWindow.xaml.cs">
      <DependentUpon>MainWindow.xaml</DependentUpon>
      <SubType>Code</SubType>
    </Compile>
    <Page Include="ResourceList.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="ScriptPlayer.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="SpriteList.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Properties\AssemblyInfo.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="Properties\Resources.Designer.cs">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Resources.resx</DependentUpon>
    </Compile>
    <Compile Include="Properties\Settings.Designer.cs">
      <AutoGen>True</AutoGen>
      <DependentUpon>Settings.settings</DependentUpon>
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
    </Compile>
163 164 165 166 167 168 169 170 171 172 173 174
    <EmbeddedResource Include="localization\Strings.ja-JP.resx">
      <Generator>PublicResXFileCodeGenerator</Generator>
      <LastGenOutput>Strings.ja-JP.Designer.cs</LastGenOutput>
    </EmbeddedResource>
    <EmbeddedResource Include="localization\Strings.resx">
      <Generator>PublicResXFileCodeGenerator</Generator>
      <LastGenOutput>Strings.Designer.cs</LastGenOutput>
    </EmbeddedResource>
    <EmbeddedResource Include="localization\Strings.zh-CN.resx">
      <Generator>PublicResXFileCodeGenerator</Generator>
      <LastGenOutput>Strings.zh-CN.Designer.cs</LastGenOutput>
    </EmbeddedResource>
H
Huajiang Wei 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
    <EmbeddedResource Include="Properties\Resources.resx">
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
    <None Include="app.config" />
    <None Include="Properties\Settings.settings">
      <Generator>SettingsSingleFileGenerator</Generator>
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
    </None>
    <AppDesigner Include="Properties\" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\ExecutionEngine\ExecutionEngine.csproj">
      <Project>{86044555-48e3-4128-92ee-59f55f9d8b53}</Project>
      <Name>ExecutionEngine</Name>
    </ProjectReference>
    <ProjectReference Include="..\FontAwesome.WPF\FontAwesome.WPF.csproj">
      <Project>{7006ac9f-d218-4d7b-98eb-5d2d91f69c57}</Project>
      <Name>FontAwesome.WPF</Name>
    </ProjectReference>
H
Huajiang Wei 已提交
195
    <ProjectReference Include="..\ScratchEditor\ScriptEditor.csproj">
H
Huajiang Wei 已提交
196
      <Project>{801cfd14-89d2-4b1e-9332-b22ec959baba}</Project>
H
Huajiang Wei 已提交
197
      <Name>ScriptEditor</Name>
H
Huajiang Wei 已提交
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
    </ProjectReference>
    <ProjectReference Include="..\ScriptEngine\ScriptEngine.csproj">
      <Project>{9efe2134-8015-4957-a9e1-f7d2fbb4cda7}</Project>
      <Name>ScriptEngine</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <Folder Include="function\" />
  </ItemGroup>
  <ItemGroup>
    <Resource Include="images\backdrop1.png" />
  </ItemGroup>
  <ItemGroup>
    <Resource Include="images\th.jpg" />
  </ItemGroup>
213 214 215
  <ItemGroup>
    <Resource Include="images\run.png" />
  </ItemGroup>
H
Huajiang Wei 已提交
216 217 218 219 220 221 222 223 224
  <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>