-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (29 loc) · 1.35 KB
/
Directory.Build.props
File metadata and controls
32 lines (29 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
<Project>
<PropertyGroup>
<LangVersion>preview</LangVersion>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
<PropertyGroup>
<Authors>Albus Kavaliro</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>https://github.com/AlbusKavaliro/WinTokenBridge/blob/main/CHANGELOG.md</PackageReleaseNotes>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<RepositoryUrl>https://github.com/AlbusKavaliro/TraceableLdapClient.git</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>main</RepositoryBranch>
<RepositoryCommit>baf8311cb8bbf88003ac25486e4e0440f7609c3a</RepositoryCommit>
<Version>1.0.0-beta.5</Version>
</PropertyGroup>
<PropertyGroup>
<RuntimeWindows>win-x64;win-x86;win-arm64</RuntimeWindows>
<RuntimeLinux>linux-x64;linux-musl-x64;linux-musl-arm64;linux-arm;linux-arm64</RuntimeLinux>
<RuntimeOSX>osx-x64;osx-arm64</RuntimeOSX>
<RuntimeIdentifiers>$(RuntimeWindows);$(RuntimeLinux);$(RuntimeOSX)</RuntimeIdentifiers>
</PropertyGroup>
</Project>