| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | 
							- <Project>
 
-   <!-- Workaround. Remove once we're on 3.1.300+
 
-   https://github.com/dotnet/sourcelink/issues/572 -->
 
-   <PropertyGroup>
 
-     <TargetFrameworkMonikerAssemblyAttributesPath>$([System.IO.Path]::Combine('$(IntermediateOutputPath)','$(TargetFrameworkMoniker).AssemblyAttributes$(DefaultLanguageSourceExtension)'))</TargetFrameworkMonikerAssemblyAttributesPath>
 
-   </PropertyGroup>
 
-   <ItemGroup>
 
-     <EmbeddedFiles Include="$(GeneratedAssemblyInfoFile)"/>
 
-   </ItemGroup>
 
-   <!-- This props all need to be set in targets as they depend on the values set earlier -->
 
-   
 
-   <PropertyGroup>  
 
-     <Product>$(AssemblyName) ($(TargetFramework))</Product>
 
-   </PropertyGroup>
 
-   <PropertyGroup>
 
-     <DefineConstants>$(DefineConstants);HAS_WINRT</DefineConstants>
 
-   </PropertyGroup>
 
-     
 
-   <PropertyGroup Condition="'$(TargetFramework)' == 'net46'">
 
-     <DefineConstants>$(DefineConstants);HAS_WINFORMS;HAS_DISPATCHER;HAS_REMOTING;DESKTOPCLR</DefineConstants>
 
-   </PropertyGroup>
 
-   <PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'">
 
-     <TargetPlatformVersion>10.0.17763.0</TargetPlatformVersion>
 
-     <TargetPlatformMinVersion>10.0.15063.0</TargetPlatformMinVersion>
 
-     <DefineConstants>$(DefineConstants);NO_CODE_COVERAGE_ATTRIBUTE;NO_SERIALIZABLE;CRIPPLED_REFLECTION;NO_THREAD;NO_TRACE;WINDOWS</DefineConstants>
 
-   </PropertyGroup>
 
-   <PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0.16299'">
 
-     <DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
 
-     <TargetPlatformVersion>10.0.17763.0</TargetPlatformVersion>
 
-   </PropertyGroup>
 
-   <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netcoreapp2.1'">
 
-     <DefineConstants>$(DefineConstants)</DefineConstants>
 
-   </PropertyGroup>
 
-   <PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
 
-     <DefineConstants>$(DefineConstants);HAS_WINFORMS;HAS_DISPATCHER;DESKTOPCLR</DefineConstants>
 
-   </PropertyGroup>
 
-   <ItemGroup Condition="'$(TargetFramework)' != 'netcoreapp3.0'">
 
-     <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
 
-   </ItemGroup>
 
-   <Target Name="AddCommitHashToAssemblyAttributes" BeforeTargets="GetAssemblyAttributes">
 
-     <ItemGroup>
 
-       <AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute" Condition=" '$(SourceRevisionId)' != '' ">
 
-         <_Parameter1>CommitHash</_Parameter1>
 
-         <_Parameter2>$(SourceRevisionId)</_Parameter2>
 
-       </AssemblyAttribute>
 
-     </ItemGroup>
 
-   </Target>
 
-   
 
- </Project>
 
 
  |