-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
34 lines (30 loc) · 1.35 KB
/
Copy pathDirectory.Build.props
File metadata and controls
34 lines (30 loc) · 1.35 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
<Project>
<PropertyGroup>
<Authors>Sebastian Walter</Authors>
<Company>evilbaschdi (Sebastian Walter)</Company>
<Copyright>Copyright © 2018 - $([System.DateTime]::UtcNow.ToString(yyyy)) evilbaschdi</Copyright>
<!-- ReSharper disable once UnknownProperty -->
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(MSBuildProjectName).xml</DocumentationFile>
<!-- ReSharper disable once UnknownProperty -->
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>preview</LangVersion>
<Nullable>disable</Nullable>
<PackageProjectUrl>https://github.com/evilbaschdi/DisplayRotation</PackageProjectUrl>
<Product>DisplayRotation</Product>
<PublishSingleFile>true</PublishSingleFile>
<RepositoryUrl>https://github.com/evilbaschdi/DisplayRotation</RepositoryUrl>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<Version>$([System.DateTime]::UtcNow.ToString(yyyy.M.d.Hmm))</Version>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<!-- ReSharper disable once UnknownProperty -->
<ItemGroup>
<Using Include="EvilBaschdi.Core" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EvilBaschdi.Core" />
<PackageReference Include="EvilBaschdi.Core.Avalonia" />
<PackageReference Include="EvilBaschdi.Core.DependencyInjection" />
</ItemGroup>
</Project>