-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (31 loc) · 1.24 KB
/
Directory.Build.props
File metadata and controls
36 lines (31 loc) · 1.24 KB
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>
<PropertyGroup>
<BaseDir>$(MSBuildThisFileDirectory)</BaseDir>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<NeutralLanguage>de</NeutralLanguage>
<DebugType>embedded</DebugType>
<ImplicitUsings>enable</ImplicitUsings>
<ImplicitUsings>true</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<Company>Stefc Development</Company>
<Authors>$(Company)</Authors>
<Copyright>Copyright © $(Company) $([System.DateTime]::Now.Year)</Copyright>
<Trademark>$(Company)™</Trademark>
<Product>stefc.pv</Product>
</PropertyGroup>
<!-- Versionierung zusammen mit version.json -->
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.143">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>mosmix.tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>