GodotSharpTools.csproj 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProjectGuid>{A8CDAD94-C6D4-4B19-A7E7-76C53CC92984}</ProjectGuid>
  7. <OutputType>Library</OutputType>
  8. <RootNamespace>GodotSharpTools</RootNamespace>
  9. <AssemblyName>GodotSharpTools</AssemblyName>
  10. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  13. <DebugSymbols>true</DebugSymbols>
  14. <DebugType>portable</DebugType>
  15. <Optimize>false</Optimize>
  16. <OutputPath>bin\Debug</OutputPath>
  17. <DefineConstants>DEBUG;</DefineConstants>
  18. <ErrorReport>prompt</ErrorReport>
  19. <WarningLevel>4</WarningLevel>
  20. <ConsolePause>false</ConsolePause>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  23. <DebugType>portable</DebugType>
  24. <Optimize>true</Optimize>
  25. <OutputPath>bin\Release</OutputPath>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <ConsolePause>false</ConsolePause>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <Reference Include="System" />
  32. <Reference Include="Microsoft.Build" />
  33. <Reference Include="Microsoft.Build.Framework" />
  34. <Reference Include="DotNet.Glob, Version=2.1.1.0, Culture=neutral, PublicKeyToken=b68cc888b4f632d1, processorArchitecture=MSIL">
  35. <HintPath>packages\DotNet.Glob.2.1.1\lib\net45\DotNet.Glob.dll</HintPath>
  36. </Reference>
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Compile Include="StringExtensions.cs" />
  40. <Compile Include="Build\BuildSystem.cs" />
  41. <Compile Include="Editor\MonoDevelopInstance.cs" />
  42. <Compile Include="Project\ProjectExtensions.cs" />
  43. <Compile Include="Project\ProjectGenerator.cs" />
  44. <Compile Include="Project\ProjectUtils.cs" />
  45. <Compile Include="Properties\AssemblyInfo.cs" />
  46. <Compile Include="Utils\OS.cs" />
  47. <Compile Include="Editor\GodotSharpExport.cs" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <None Include="packages.config" />
  51. </ItemGroup>
  52. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  53. </Project>