-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
37 lines (35 loc) · 1.74 KB
/
Copy pathDirectory.Build.props
File metadata and controls
37 lines (35 loc) · 1.74 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
37
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<DebugType>embedded</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<RepositoryUrl>https://github.com/Oexyz/SocketScope</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>OeXYZ</Authors>
<Company>OeXYZ</Company>
<Product>OeXYZ SocketScope</Product>
<Copyright>Copyright © 2026 OeXYZ</Copyright>
<DefaultItemExcludes>$(DefaultItemExcludes);**/obj/**;**/obj-*/**;**/bin/**;**/bin-*/**</DefaultItemExcludes>
</PropertyGroup>
<PropertyGroup Condition="'$(MSBuildProjectName)' == 'OeXYZ.SocketScope.Desktop'">
<ApplicationTitle>OeXYZ SocketScope</ApplicationTitle>
</PropertyGroup>
<PropertyGroup Condition="'$(MSBuildProjectName)' == 'OeXYZ.SocketScope.Core'
Or '$(MSBuildProjectName)' == 'OeXYZ.SocketScope.Platform.Windows'
Or '$(MSBuildProjectName)' == 'OeXYZ.SocketScope.Platform.Linux'
Or '$(MSBuildProjectName)' == 'OeXYZ.SocketScope.Cli'
Or '$(MSBuildProjectName)' == 'OeXYZ.SocketScope.Desktop'
Or '$(MSBuildProjectName)' == 'OeXYZ.SocketScope.Updater'">
<RuntimeIdentifiers>win-x64;win-arm64;linux-x64;linux-arm64</RuntimeIdentifiers>
</PropertyGroup>
</Project>