2024-06-01 20:01:50 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
|
|
|
<LangVersion>12</LangVersion>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<RootNamespace>Questionable.QuestPaths</RootNamespace>
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
<PathMap Condition="$(SolutionDir) != ''">$(SolutionDir)=X:\</PathMap>
|
2024-06-14 09:37:33 +00:00
|
|
|
|
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
|
2024-06-01 20:01:50 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-06-14 09:37:33 +00:00
|
|
|
|
<ItemGroup>
|
2024-07-07 16:36:53 +00:00
|
|
|
|
<ProjectReference Include="..\Questionable.Model\Questionable.Model.csproj"/>
|
2024-06-14 09:37:33 +00:00
|
|
|
|
<ProjectReference Include="..\QuestPathGenerator\QuestPathGenerator.csproj"
|
|
|
|
|
OutputItemType="Analyzer"
|
2024-07-07 16:36:53 +00:00
|
|
|
|
ReferenceOutputAssembly="false"/>
|
2024-06-14 09:37:33 +00:00
|
|
|
|
</ItemGroup>
|
2024-06-01 20:01:50 +00:00
|
|
|
|
|
2024-06-03 12:20:02 +00:00
|
|
|
|
<ItemGroup Condition="'$(Configuration)' == 'Release'">
|
2024-06-14 09:37:33 +00:00
|
|
|
|
<None Remove="ARealmReborn"/>
|
|
|
|
|
<None Remove="Shadowbringers"/>
|
2024-07-07 16:36:53 +00:00
|
|
|
|
<!--<None Remove="Endwalker"/>-->
|
|
|
|
|
<None Remove="Dawntrail"/>
|
|
|
|
|
<None Remove="quest-v1.json"/>
|
|
|
|
|
<AdditionalFiles Include="ARealmReborn\**\*.json"/>
|
|
|
|
|
<AdditionalFiles Include="Shadowbringers\**\*.json"/>
|
|
|
|
|
<!--<AdditionalFiles Include="Endwalker\**\*.json" />-->
|
|
|
|
|
<AdditionalFiles Include="Dawntrail\**\*.json"/>
|
|
|
|
|
<AdditionalFiles Include="quest-v1.json"/>
|
2024-06-01 20:01:50 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|