foxygit / digitalskrivare_merge Log in
commits tags

/src/Remiss.App/Remiss.App.csproj · 1.28 KB

raw
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>WinExe</OutputType>
    <TargetFramework>net8.0-windows</TargetFramework>
    <Nullable>enable</Nullable>
    <ImplicitUsings>enable</ImplicitUsings>
    <UseWindowsForms>true</UseWindowsForms>
    <LangVersion>latest</LangVersion>
    <RootNamespace>Remiss.App</RootNamespace>
    <AssemblyName>Remiss</AssemblyName>
    <ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
  </PropertyGroup>

  <ItemGroup>
    <ProjectReference Include="..\Remiss.Core\Remiss.Core.csproj" />
  </ItemGroup>

  <ItemGroup>
    <None Include="..\..\config\appsettings.json" Link="appsettings.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <None Include="..\..\config\mottagningar.json" Link="mottagningar.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <!-- Buntad binär (checkas ej in, se tools/README.md). Kopieras om den finns
         så att `dotnet run` fungerar och layouten matchar Fas 4-paketeringen. -->
    <None Include="..\..\tools\SumatraPDF.exe" Link="tools\SumatraPDF.exe"
          Condition="Exists('..\..\tools\SumatraPDF.exe')">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
  </ItemGroup>

</Project>