Files
@ 95e1ae426eb3
Branch filter:
Location: ATITD-Tools/Desert-Paint-Codex/DesertPaintCodex.csproj - annotation
95e1ae426eb3
2.0 KiB
text/plain
Add an info box when a detected clipped reaction could be extrapolated from a white shift.
40eaee10ae56 40eaee10ae56 40eaee10ae56 e4628e1c4408 40eaee10ae56 c4151b335d1f c4151b335d1f c4151b335d1f 7ef39aaa6e6b c4151b335d1f c4151b335d1f c4151b335d1f c4151b335d1f c4151b335d1f c4151b335d1f 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 6919080271d5 6919080271d5 6919080271d5 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ApplicationIcon>Assets\desert_paint_codex_icon.ico</ApplicationIcon>
<StartupObject>DesertPaintCodex.Program</StartupObject>
<Platforms>AnyCPU;x64</Platforms>
<Version>1.11.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
<AvaloniaResource Include="Assets\**" />
<None Remove="CodexTheme.xaml" />
<None Update="Data\renames.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.999-cibuild0014036-beta" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.999-cibuild0014036-beta" />
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.999-cibuild0014036-beta" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.999-cibuild0014036-beta" />
<PackageReference Include="System.Reactive" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="Data\ingredients.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Data\colors.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Data\template\clips.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Data\template\dp_reactions.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Data\template\ingredients.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
|