You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.0 KiB
28 lines
1.0 KiB
<Project>
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<WarningLevel>9999</WarningLevel>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<DebugType>embedded</DebugType>
|
|
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
|
|
<GitVersionBaseDirectory>$(MSBuildThisFileDirectory)</GitVersionBaseDirectory>
|
|
<!--<DisableGitVersionTask>true</DisableGitVersionTask>-->
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
</PropertyGroup>
|
|
|
|
<!--
|
|
To prevent System.Reactive.xml (and other XML docs) from being in the publish dir.
|
|
See: https://github.com/dotnet/reactive/issues/1066#issuecomment-548941146
|
|
-->
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<AllowedReferenceRelatedFileExtensions>
|
|
</AllowedReferenceRelatedFileExtensions>
|
|
</PropertyGroup>
|
|
|
|
<!-- For only NON-TEST projects -->
|
|
<ItemGroup Condition="!$(ProjectName.EndsWith('.Tests'))">
|
|
<InternalsVisibleTo Include="$(AssemblyName).Tests" />
|
|
</ItemGroup>
|
|
</Project>
|