forked from EvilBeaver/OneScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoscommon.targets
More file actions
37 lines (32 loc) · 1.82 KB
/
Copy pathoscommon.targets
File metadata and controls
37 lines (32 loc) · 1.82 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 xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--Свойства сборки по умолчанию-->
<PropertyGroup>
<BuildNumber Condition="'$(BUILD_NUMBER)' != ''">$(BUILD_NUMBER)</BuildNumber>
<BuildNumber Condition="'$(BUILD_NUMBER)' == ''">0</BuildNumber>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
<Platform Condition="'$(Platform)' == ''">x86</Platform>
<LangVersion>default</LangVersion>
<TargetFrameworkVersion>net8.0</TargetFrameworkVersion>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<IncludeSourceRevisionInInformationalVersion>False</IncludeSourceRevisionInInformationalVersion>
<ImplicitUsings>disable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<PackageOwners>EvilBeaver <ovsiankin.aa@gmail.com></PackageOwners>
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://oscript.io</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Authors>OneScript OpenSource Community</Authors>
</PropertyGroup>
<!--Общие свойства для проектов-->
<PropertyGroup>
<VersionPrefix Condition="'$(VersionPrefix)' == ''">2.0.0</VersionPrefix>
<FileVersion>$(VersionPrefix).$(BuildNumber)</FileVersion>
<InformationalVersion Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</InformationalVersion>
<Product>1C (BSL) language runtime</Product>
<Copyright>Copyright (c) 2021 EvilBeaver</Copyright>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DocumentationFile>bin\Release\$(MSBuildProjectName).xml</DocumentationFile>
</PropertyGroup>
</Project>