-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
61 lines (54 loc) · 2.43 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project>
<PropertyGroup>
<!-- essential build info -->
<TargetFramework>net8.0</TargetFramework>
<UseArtifactsOutput>true</UseArtifactsOutput>
<!-- <Platofrms>AnyCPU;x64</Platofrms> -->
<VersionPrefix>0.7.1</VersionPrefix>
<VersionSuffix>preview.1</VersionSuffix>
<AssemblyVersion>0.7.1.1</AssemblyVersion>
<FileVersion>0.7.1.1</FileVersion>
<Configurations>Debug;Release</Configurations>
<!-- metadata -->
<NeutralLanguage>en-US</NeutralLanguage>
<Authors>Gigas002</Authors>
<Company>Gigas002</Company>
<Description>Deploy study library</Description>
<Copyright>Copyright © Gigas002 2023</Copyright>
<PackageProjectUrl>https://Gigas002.github.io/dotnet_gh_deploy</PackageProjectUrl>
<RepositoryUrl>https://github.com/Gigas002/dotnet_gh_deploy</RepositoryUrl>
<PackageReleaseNotes>https://github.com/Gigas002/dotnet_gh_deploy/blob/master/CHANGELOG.md</PackageReleaseNotes>
<RepositoryType>git</RepositoryType>
<PackageTags>test</PackageTags>
<!-- additional build props -->
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<!-- resources -->
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<PackageIcon>Icon.png</PackageIcon>
<!-- see: https://spdx.org/licenses/ -->
<!-- <PackageLicenseFile>LICENSE.md</PackageLicenseFile> -->
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<!-- TODO: for future generations -->
<!-- <PublishAot>true</PublishAot> -->
</PropertyGroup>
<ItemGroup>
<!-- <None Include="..\LICENSE.md" Pack="true" PackagePath="\" /> -->
<None Include="..\README.md" Pack="true" PackagePath="\" />
<None Include="..\Resources\Icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>