forked from StockSharp/StockSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common_target_common.props
59 lines (51 loc) · 2.72 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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="common_versions.props" />
<PropertyGroup>
<SSProjectName>StockSharp.$(MSBuildProjectName)</SSProjectName>
<RootNamespace>$(SSProjectName)</RootNamespace>
<AssemblyName>$(SSProjectName)</AssemblyName>
<!--<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>-->
<RepoGitHubPath>$(MSBuildThisFileDirectory)</RepoGitHubPath>
<RepoAppsPath>$(RepoGitHubPath)..\StockSharpApps\</RepoAppsPath>
<RepoWebPath>$(RepoGitHubPath)..\Web\</RepoWebPath>
<ConnectorsGitHubPath>$(RepoGitHubPath)Samples\Connectors\</ConnectorsGitHubPath>
<ConnectorsAppsPath>$(RepoAppsPath)Connectors\</ConnectorsAppsPath>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<Product>StockSharp</Product>
<Company>StockSharp Platform LLC</Company>
<Version>5.0.0</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<Copyright>Copyright @ $(Company) 2010 - $([System.DateTime]::Now.ToString(yyyy))</Copyright>
</PropertyGroup>
<!-- workaround for https://github.com/dotnet/wpf/issues/5711 -->
<PropertyGroup Condition="$(_TargetAssemblyProjectName) != ''">
<SSProjectName>StockSharp.$(_TargetAssemblyProjectName)</SSProjectName>
<AssemblyName>$(SSProjectName)</AssemblyName>
</PropertyGroup>
<PropertyGroup>
<!-- reverse defaults from "C:\Program Files\dotnet\sdk\5.0.102\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.GenerateAssemblyInfo.targets" -->
<GenerateAssemblyTitleAttribute Condition="'$(GenerateAssemblyTitleAttribute)' == ''">false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute Condition="'$(GenerateAssemblyDescriptionAttribute)' == ''">false</GenerateAssemblyDescriptionAttribute>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Reflection.AssemblyTrademarkAttribute">
<_Parameter1>StockSharp</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Condition=" !$(DefineConstants.Contains('CLS_DISABLE')) " Include="System.CLSCompliantAttribute">
<_Parameter1>true</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Resources.NeutralResourcesLanguageAttribute">
<_Parameter1>en-US</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.InteropServices.ComVisibleAttribute">
<_Parameter1>false</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>