-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDirectory.Build.props
36 lines (32 loc) · 1.07 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project>
<!-- Compiler settings -->
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<UseCurrentRuntimeIdentifier>true</UseCurrentRuntimeIdentifier>
<PublishReadyToRun>true</PublishReadyToRun>
</PropertyGroup>
<!-- Solution properties -->
<PropertyGroup>
<SolutionDir Condition="'$(SolutionDir)' == ''">
$(MSBuildThisFileDirectory)
</SolutionDir>
<SolutionDir>$(SolutionDir.Trim())</SolutionDir>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<ArtifactsPath>$(SolutionDir)build</ArtifactsPath>
</PropertyGroup>
<!-- Weaver settings -->
<PropertyGroup>
<WeaverConfiguration>
<Weavers>
<Janitor />
</Weavers>
</WeaverConfiguration>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)Package.props" />
</Project>