VintageStoryFullMachineAge/AnvilMetalRecovery/AnvilMetalRecovery.csproj
melchior e08d051014 Entirely NEW method of detecting item expiry,
HotbarObserve class - now obsolete
2021-07-06 21:09:49 -04:00

139 lines
No EOL
5.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{3EC9A581-655C-4F68-898C-4E773C292082}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>AnvilMetalRecovery</RootNamespace>
<AssemblyName>AnvilMetalRecovery</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<CustomCommands>
<CustomCommands>
<Command type="AfterBuild" command="7z a -tzip -x!*.zip -aoa ${ProjectName}_${ProjectConfig}.zip" workingdir="${TargetDir}" />
<Command type="AfterClean" command="rm -f *.zip" workingdir="${TargetDir}" />
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<CustomCommands>
<CustomCommands>
<Command type="AfterBuild" command="7z a -tzip -x!*.zip -aoa ${ProjectName}_${ProjectConfig}.zip" workingdir="${TargetDir}" />
<Command type="AfterClean" command="rm -f *.zip" workingdir="${TargetDir}" />
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="VintagestoryAPI">
<HintPath>vs_libs\VintagestoryAPI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="VintagestoryLib">
<HintPath>vs_libs\VintagestoryLib.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="VSCreativeMod">
<HintPath>vs_libs\VSCreativeMod.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="VSEssentials">
<HintPath>vs_libs\VSEssentials.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="VSSurvivalMod">
<HintPath>vs_libs\VSSurvivalMod.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>vs_libs\Newtonsoft.Json.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="0Harmony">
<HintPath>vs_libs\0Harmony.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="MetalRecoverySystem.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Helpers.cs" />
<Compile Include="EntityBehaviors\HotbarObserverData.cs" />
<Compile Include="Data\RecoveryEntry.cs" />
<Compile Include="Items\VariableMetalItem.cs" />
<Compile Include="Items\SmartSmeltableItem.cs" />
<Compile Include="Harmony\AnvilDaptor.cs" />
<Compile Include="MetalRecoverySystem_Components.cs" />
<Compile Include="Harmony\GenericItemMortalityDetector.cs" />
</ItemGroup>
<ItemGroup>
<None Include="modinfo.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="assets\fma\itemtypes\metal\metal_shavings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="assets\fma\shapes\item\metal\metal_shavings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="assets\fma\lang\en.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="assets\fma\lang\pt-br.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="assets\fma\patches\hotbarobserver_for_playerentity.json">
</None>
<None Include="modicon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="assets\fma\shapes\item\metal\fragments.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="assets\fma\itemtypes\metal\fragments.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="BlockEntities\MetalRecovery_BlockEntityAnvil.cs" />
<None Include="assets\fma\lang\de.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="EntityBehaviors\HotbarObserverBehavior.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="assets\" />
<Folder Include="assets\fma\" />
<Folder Include="assets\fma\shapes\" />
<Folder Include="assets\fma\itemtypes\" />
<Folder Include="assets\fma\itemtypes\metal\" />
<Folder Include="assets\fma\shapes\item\" />
<Folder Include="assets\fma\shapes\item\metal\" />
<Folder Include="assets\fma\lang\" />
<Folder Include="BlockEntities\" />
<Folder Include="assets\fma\shapes\item\tools\" />
<Folder Include="assets\fma\itemtypes\tools\" />
<Folder Include="assets\fma\recipes\" />
<Folder Include="assets\fma\recipes\grid\" />
<Folder Include="assets\fma\recipes\grid\tool\" />
<Folder Include="EntityBehaviors\" />
<Folder Include="assets\fma\patches\" />
<Folder Include="Data\" />
<Folder Include="Items\" />
<Folder Include="Harmony\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>