-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (24 loc) · 1.45 KB
/
Copy pathDirectory.Build.props
File metadata and controls
24 lines (24 loc) · 1.45 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
<Project>
<PropertyGroup>
<!-- Single source of truth for the application version. -->
<WindowSwitcherVersion>0.11.0</WindowSwitcherVersion>
<Version>$(WindowSwitcherVersion)</Version>
<PackageVersion>$(WindowSwitcherVersion)</PackageVersion>
<InformationalVersion>$(WindowSwitcherVersion)</InformationalVersion>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<EnableSentryTelemetry Condition="'$(EnableSentryTelemetry)' == ''">true</EnableSentryTelemetry>
<TelemetryDistributionChannel Condition="'$(TelemetryDistributionChannel)' == ''">source</TelemetryDistributionChannel>
<TelemetryPackageKind Condition="'$(TelemetryPackageKind)' == ''">unpackaged</TelemetryPackageKind>
<DefineConstants Condition="'$(EnableSentryTelemetry)' == 'true'">$(DefineConstants);SENTRY_TELEMETRY</DefineConstants>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
<_Parameter1>TelemetryDistributionChannel</_Parameter1>
<_Parameter2>$(TelemetryDistributionChannel)</_Parameter2>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
<_Parameter1>TelemetryPackageKind</_Parameter1>
<_Parameter2>$(TelemetryPackageKind)</_Parameter2>
</AssemblyAttribute>
</ItemGroup>
</Project>