Skip to content

Commit 82c2f8e

Browse files
committed
Small change.
1 parent 690f05f commit 82c2f8e

File tree

2 files changed

+59
-57
lines changed

2 files changed

+59
-57
lines changed

common_meta.props

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<SSProjectName>StockSharp.$(MSBuildProjectName)</SSProjectName>
4+
5+
<RootNamespace>$(SSProjectName)</RootNamespace>
6+
<AssemblyName>$(SSProjectName)</AssemblyName>
7+
8+
<!--<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>-->
9+
10+
<RepoGitHubPath>$(MSBuildThisFileDirectory)</RepoGitHubPath>
11+
<RepoAppsPath>$(RepoGitHubPath)..\StockSharpApps\</RepoAppsPath>
12+
<RepoWebPath>$(RepoGitHubPath)..\Web\</RepoWebPath>
13+
<ConnectorsGitHubPath>$(RepoGitHubPath)Samples\Connectors\</ConnectorsGitHubPath>
14+
<ConnectorsAppsPath>$(RepoAppsPath)Connectors\</ConnectorsAppsPath>
15+
16+
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
17+
<Product>StockSharp</Product>
18+
<Company>StockSharp Platform LLC</Company>
19+
<Version>5.0.0</Version>
20+
<AssemblyVersion>$(Version)</AssemblyVersion>
21+
<FileVersion>$(Version)</FileVersion>
22+
<Copyright>Copyright @ $(Company) 2010 - $([System.DateTime]::Now.ToString(yyyy))</Copyright>
23+
<InformationalVersion>$([System.DateTime]::UtcNow.ToString("yyyyMMddHHmmss"))</InformationalVersion>
24+
</PropertyGroup>
25+
26+
<!-- workaround for https://github.com/dotnet/wpf/issues/5711 -->
27+
<PropertyGroup Condition="$(_TargetAssemblyProjectName) != ''">
28+
<SSProjectName>StockSharp.$(_TargetAssemblyProjectName)</SSProjectName>
29+
<AssemblyName>$(SSProjectName)</AssemblyName>
30+
</PropertyGroup>
31+
32+
<PropertyGroup>
33+
<!-- reverse defaults from "C:\Program Files\dotnet\sdk\5.0.102\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.GenerateAssemblyInfo.targets" -->
34+
<GenerateAssemblyTitleAttribute Condition="'$(GenerateAssemblyTitleAttribute)' == ''">false</GenerateAssemblyTitleAttribute>
35+
<GenerateAssemblyDescriptionAttribute Condition="'$(GenerateAssemblyDescriptionAttribute)' == ''">false</GenerateAssemblyDescriptionAttribute>
36+
</PropertyGroup>
37+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
38+
<DebugType>portable</DebugType>
39+
</PropertyGroup>
40+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
41+
<DebugType>none</DebugType>
42+
</PropertyGroup>
43+
44+
<ItemGroup>
45+
<AssemblyAttribute Include="System.Reflection.AssemblyTrademarkAttribute">
46+
<_Parameter1>StockSharp</_Parameter1>
47+
</AssemblyAttribute>
48+
<AssemblyAttribute Condition=" !$(DefineConstants.Contains('CLS_DISABLE')) " Include="System.CLSCompliantAttribute">
49+
<_Parameter1>true</_Parameter1>
50+
</AssemblyAttribute>
51+
<AssemblyAttribute Include="System.Resources.NeutralResourcesLanguageAttribute">
52+
<_Parameter1>en-US</_Parameter1>
53+
</AssemblyAttribute>
54+
<AssemblyAttribute Include="System.Runtime.InteropServices.ComVisibleAttribute">
55+
<_Parameter1>false</_Parameter1>
56+
</AssemblyAttribute>
57+
</ItemGroup>
58+
</Project>

common_target_common.props

Lines changed: 1 addition & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,4 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<Import Project="common_versions.props" />
3-
4-
<PropertyGroup>
5-
<SSProjectName>StockSharp.$(MSBuildProjectName)</SSProjectName>
6-
7-
<RootNamespace>$(SSProjectName)</RootNamespace>
8-
<AssemblyName>$(SSProjectName)</AssemblyName>
9-
10-
<!--<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>-->
11-
12-
<RepoGitHubPath>$(MSBuildThisFileDirectory)</RepoGitHubPath>
13-
<RepoAppsPath>$(RepoGitHubPath)..\StockSharpApps\</RepoAppsPath>
14-
<RepoWebPath>$(RepoGitHubPath)..\Web\</RepoWebPath>
15-
<ConnectorsGitHubPath>$(RepoGitHubPath)Samples\Connectors\</ConnectorsGitHubPath>
16-
<ConnectorsAppsPath>$(RepoAppsPath)Connectors\</ConnectorsAppsPath>
17-
18-
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
19-
<Product>StockSharp</Product>
20-
<Company>StockSharp Platform LLC</Company>
21-
<Version>5.0.0</Version>
22-
<AssemblyVersion>$(Version)</AssemblyVersion>
23-
<FileVersion>$(Version)</FileVersion>
24-
<Copyright>Copyright @ $(Company) 2010 - $([System.DateTime]::Now.ToString(yyyy))</Copyright>
25-
<InformationalVersion>$([System.DateTime]::UtcNow.ToString("yyyyMMddHHmmss"))</InformationalVersion>
26-
</PropertyGroup>
27-
28-
<!-- workaround for https://github.com/dotnet/wpf/issues/5711 -->
29-
<PropertyGroup Condition="$(_TargetAssemblyProjectName) != ''">
30-
<SSProjectName>StockSharp.$(_TargetAssemblyProjectName)</SSProjectName>
31-
<AssemblyName>$(SSProjectName)</AssemblyName>
32-
</PropertyGroup>
33-
34-
<PropertyGroup>
35-
<!-- reverse defaults from "C:\Program Files\dotnet\sdk\5.0.102\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.GenerateAssemblyInfo.targets" -->
36-
<GenerateAssemblyTitleAttribute Condition="'$(GenerateAssemblyTitleAttribute)' == ''">false</GenerateAssemblyTitleAttribute>
37-
<GenerateAssemblyDescriptionAttribute Condition="'$(GenerateAssemblyDescriptionAttribute)' == ''">false</GenerateAssemblyDescriptionAttribute>
38-
</PropertyGroup>
39-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
40-
<DebugType>portable</DebugType>
41-
</PropertyGroup>
42-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
43-
<DebugType>none</DebugType>
44-
</PropertyGroup>
45-
46-
<ItemGroup>
47-
<AssemblyAttribute Include="System.Reflection.AssemblyTrademarkAttribute">
48-
<_Parameter1>StockSharp</_Parameter1>
49-
</AssemblyAttribute>
50-
<AssemblyAttribute Condition=" !$(DefineConstants.Contains('CLS_DISABLE')) " Include="System.CLSCompliantAttribute">
51-
<_Parameter1>true</_Parameter1>
52-
</AssemblyAttribute>
53-
<AssemblyAttribute Include="System.Resources.NeutralResourcesLanguageAttribute">
54-
<_Parameter1>en-US</_Parameter1>
55-
</AssemblyAttribute>
56-
<AssemblyAttribute Include="System.Runtime.InteropServices.ComVisibleAttribute">
57-
<_Parameter1>false</_Parameter1>
58-
</AssemblyAttribute>
59-
</ItemGroup>
3+
<Import Project="common_meta.props" />
604
</Project>

0 commit comments

Comments
 (0)