XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

AutoMiningScript

【SpaceEngineer】全自动挖矿脚本

公开
关注 0 Fork 0 Star 0
UTF-8
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <TargetFramework>net48</TargetFramework>
    <RootNamespace>AutoMiningScript</RootNamespace>
    <LangVersion>6</LangVersion>
    <ImplicitUsings>disable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <PlatformTarget>x64</PlatformTarget>
    <Platforms>x64</Platforms>
    <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
    <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
    <DefineConstants>$(DefineConstants);MINER</DefineConstants>
    <MdkInteractive>no</MdkInteractive>
    <MdkArguments>-gamebin "$(NuGetPackageRoot)xfeextension.spaceengineers.scriptinghelper/1.0.3/lib/net48" -output "$(MSBuildProjectDirectory)/../dist/$(ScriptLanguage)"</MdkArguments>
    <WarningsAsErrors>$(WarningsAsErrors);MDK05</WarningsAsErrors>
  </PropertyGroup>
  <ItemGroup>
    <PackageReference Include="XFEExtension.SpaceEngineers.ScriptingHelper" Version="1.0.3" PrivateAssets="all" />
    <PackageReference Include="Mal.Mdk2.PbAnalyzers" Version="2.2.0" PrivateAssets="all" IncludeAssets="runtime;build;native;contentfiles;analyzers;buildtransitive" />
    <PackageReference Include="Mal.Mdk2.PbPackager" Version="2.2.11" PrivateAssets="all" IncludeAssets="runtime;build;native;contentfiles;analyzers;buildtransitive" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Program.cs" />
    <Compile Include="Core.cs" />
    <Compile Include="Settings.cs" />
    <Compile Include="Protocol.cs" />
    <Compile Include="Persistence.cs" />
    <Compile Include="Display.cs" />
    <Compile Include="Flight.cs" />
    <Compile Include="Hardware.cs" />
    <Compile Include="Resources.cs" />
    <Compile Include="MinerController.cs" />
  </ItemGroup>
</Project>