forked from StockSharp/StockSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon_target_common.props
66 lines (62 loc) · 4.4 KB
/
common_target_common.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
62
63
64
65
66
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<SSProjectName>$([System.String]::Copy('StockSharp.$(MSBuildProjectName)').Replace('GitHub',''))</SSProjectName>
<RootNamespace>$(SSProjectName)</RootNamespace>
<AssemblyName>$(SSProjectName)</AssemblyName>
<ProductVersion>9.0.30729</ProductVersion>
<!--<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>-->
<EcngVer>1.0.*</EcngVer>
<LangVersion>default</LangVersion>
<SampleHistoryDataVersion>1.*</SampleHistoryDataVersion>
<StockSharpVer>5.*</StockSharpVer>
<xNetVer>5.2.10</xNetVer>
<MathNumVer>4.15.0</MathNumVer>
<ProtobufVer>3.0.101</ProtobufVer>
<HtmlAgilityPackVer>1.11.37</HtmlAgilityPackVer>
<JwtVer>8.4.2</JwtVer>
<FluentFtpVer>35.0.5</FluentFtpVer>
<CSharpVer>4.7.0</CSharpVer>
<SignalRVer>2.4.2</SignalRVer>
<NuGetApiVer>5.11.0</NuGetApiVer>
<MsTestVer>2.2.7</MsTestVer>
<MsTestSdkVer>17.0.0</MsTestSdkVer>
<PubnubPCLVer>5.2.0</PubnubPCLVer>
<MicrosoftDataSqlClientVer>3.0.1</MicrosoftDataSqlClientVer>
<MicrosoftDataSqliteVer>5.0.11</MicrosoftDataSqliteVer>
<RepoGitHubPath>$(MSBuildThisFileDirectory)</RepoGitHubPath>
<RepoAppsPath>$(RepoGitHubPath)..\StockSharpApps\</RepoAppsPath>
<ConnectorsStubPath>$(RepoAppsPath)ConnectorsStub\</ConnectorsStubPath>
<ConnectorsGitHubPath>$(RepoGitHubPath)Samples\Connectors\</ConnectorsGitHubPath>
<ConnectorsAppsPath>$(RepoAppsPath)Connectors\</ConnectorsAppsPath>
</PropertyGroup>
<PropertyGroup>
<!-- TODO this needs to be removed when connectors fixed to NO_LICENSE constant -->
<DefineConstants>$(DefineConstants);INCLUDE_LICENSE</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<!-- reverse defaults from "C:\Program Files\dotnet\sdk\5.0.102\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.GenerateAssemblyInfo.targets" -->
<GenerateAssemblyCompanyAttribute Condition="'$(GenerateAssemblyCompanyAttribute)' == ''">false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyConfigurationAttribute Condition="'$(GenerateAssemblyConfigurationAttribute)' == ''">false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCopyrightAttribute Condition="'$(GenerateAssemblyCopyrightAttribute)' == ''">false</GenerateAssemblyCopyrightAttribute>
<GenerateAssemblyDescriptionAttribute Condition="'$(GenerateAssemblyDescriptionAttribute)' == ''">false</GenerateAssemblyDescriptionAttribute>
<GenerateAssemblyFileVersionAttribute Condition="'$(GenerateAssemblyFileVersionAttribute)' == ''">false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute Condition="'$(GenerateAssemblyInformationalVersionAttribute)' == ''">false</GenerateAssemblyInformationalVersionAttribute>
<GenerateAssemblyProductAttribute Condition="'$(GenerateAssemblyProductAttribute)' == ''">false</GenerateAssemblyProductAttribute>
<GenerateAssemblyTitleAttribute Condition="'$(GenerateAssemblyTitleAttribute)' == ''">false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyVersionAttribute Condition="'$(GenerateAssemblyVersionAttribute)' == ''">false</GenerateAssemblyVersionAttribute>
<GenerateRepositoryUrlAttribute Condition="'$(GenerateRepositoryUrlAttribute)' == '' and !('$(TargetFrameworkIdentifier)' == '.NETFramework' and $([MSBuild]::VersionLessThan($(TargetFrameworkVersion), 4.5)))">false</GenerateRepositoryUrlAttribute>
<GenerateNeutralResourcesLanguageAttribute Condition="'$(GenerateNeutralResourcesLanguageAttribute)' == ''">false</GenerateNeutralResourcesLanguageAttribute>
<GenerateAssemblyMetadataAttributes Condition="'$(GenerateAssemblyMetadataAttributes)' == ''">false</GenerateAssemblyMetadataAttributes>
<IncludeSourceRevisionInInformationalVersion Condition="'$(IncludeSourceRevisionInInformationalVersion)' == ''">false</IncludeSourceRevisionInInformationalVersion>
<GenerateInternalsVisibleToAttributes Condition="'$(GenerateInternalsVisibleToAttributes)' == ''">false</GenerateInternalsVisibleToAttributes>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(RepoGitHubPath)IsExternalInit.cs" Link="Properties\IsExternalInit.cs" />
</ItemGroup>
</Project>