๐Ÿ“ฆ Thomas-Shephard / collaborative-software-development

๐Ÿ“„ Directory.Build.props ยท 22 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22<Project>

    <PropertyGroup>
        <TargetFramework>net10.0</TargetFramework>
        <ImplicitUsings>enable</ImplicitUsings>
        <Nullable>enable</Nullable>
        <SatelliteResourceLanguages>en-GB</SatelliteResourceLanguages>
    </PropertyGroup>

    <PropertyGroup Condition="'$(Configuration)'=='Release'">
        <DebugType>None</DebugType>
        <DebugSymbols>false</DebugSymbols>
        <EnableCompression>true</EnableCompression>
        <EnableSingleFileOptimization>true</EnableSingleFileOptimization>
    </PropertyGroup>

    <ItemGroup Condition="$(MSBuildProjectName) != 'Jahoot.Core'">
        <ProjectReference Include="$(MSBuildThisFileDirectory)src\Jahoot.Core\Jahoot.Core.csproj"/>
    </ItemGroup>

</Project>