|
13 | 13 | AfterTargets="ResolvePackageDependenciesForBuild;ResolveNuGetPackageAssets"
|
14 | 14 | DependsOnTargets="_MVVMToolkitGatherAnalyzers">
|
15 | 15 |
|
16 |
| - <!-- Use the CSharpCoreTargetsPath property to find the version of the compiler we are using. This is the same mechanism |
17 |
| - MSBuild uses to find the compiler. We could check the assembly version for any compiler assembly (since they all have |
18 |
| - the same version) but Microsoft.Build.Tasks.CodeAnalysis.dll is where MSBuild loads the compiler tasks from so if |
19 |
| - someone is getting creative with msbuild tasks/targets this is the "most correct" assembly to check. --> |
20 |
| - <GetAssemblyIdentity AssemblyFiles="$([System.IO.Path]::Combine(`$([System.IO.Path]::GetDirectoryName($(CSharpCoreTargetsPath)))`,`Microsoft.Build.Tasks.CodeAnalysis.dll`))"> |
| 16 | + <!-- |
| 17 | + Use the 'CSharpCoreTargetsPath' property to find the version of the compiler we are using. This is the same mechanism |
| 18 | + MSBuild uses to find the compiler. We could check the assembly version for any compiler assembly (since they all have |
| 19 | + the same version) but 'Microsoft.Build.Tasks.CodeAnalysis.dll' is where MSBuild loads the compiler tasks from so if |
| 20 | + someone is getting creative with msbuild tasks/targets this is the "most correct" assembly to check. |
| 21 | + --> |
| 22 | + <GetAssemblyIdentity AssemblyFiles="$([System.IO.Path]::Combine('$([System.IO.Path]::GetDirectoryName($(CSharpCoreTargetsPath))'), 'Microsoft.Build.Tasks.CodeAnalysis.dll'))"> |
21 | 23 | <Output TaskParameter="Assemblies" ItemName="CurrentCompilerAssemblyIdentity"/>
|
22 | 24 | </GetAssemblyIdentity>
|
23 | 25 |
|
24 | 26 | <PropertyGroup>
|
25 |
| - |
26 | 27 | <!-- Transform the resulting item from GetAssemblyIdentity into a property representing its assembly version -->
|
27 | 28 | <CurrentCompilerVersion>@(CurrentCompilerAssemblyIdentity->'%(Version)')</CurrentCompilerVersion>
|
28 |
| - |
29 |
| - <!-- The CurrentCompilerVersionIsNotNewEnough property can now be defined based on the Roslyn assembly version --> |
| 29 | + <!-- The 'CurrentCompilerVersionIsNotNewEnough' property can now be defined based on the Roslyn assembly version --> |
30 | 30 | <CurrentCompilerVersionIsNotNewEnough Condition="$([MSBuild]::VersionLessThan($(CurrentCompilerVersion), 4.0))">true</CurrentCompilerVersionIsNotNewEnough>
|
31 | 31 | </PropertyGroup>
|
32 | 32 |
|
|
35 | 35 | <Analyzer Remove="@(_MVVMToolkitAnalyzer)"/>
|
36 | 36 | </ItemGroup>
|
37 | 37 |
|
38 |
| - <!-- If the source generators are disabled, also emit a warning. This would've been produced by MSBuild itself as well, but |
39 |
| - emitting this manually lets us customize the message to inform developers as to why exactly the generators have been |
40 |
| - disabled, and that the rest of the MVVM Toolkit will still keep working as intended, just without additional features. --> |
41 |
| - <Warning Condition ="'$(CurrentCompilerVersionIsNotNewEnough)' == 'true'" Text="The MVVM Toolkit source generators have been disabled on the current configuration, as they need Roslyn 4.x in order to work. The MVVM Toolkit will work just fine, but features relying on the source generators will not be available."/> |
| 38 | + <!-- |
| 39 | + If the source generators are disabled, also emit a warning. This would've been produced by MSBuild itself as well, but |
| 40 | + emitting this manually lets us customize the message to inform developers as to why exactly the generators have been |
| 41 | + disabled, and that the rest of the MVVM Toolkit will still keep working as intended, just without additional features. |
| 42 | + --> |
| 43 | + <Warning Condition ="'$(CurrentCompilerVersionIsNotNewEnough)' == 'true'" Text="The MVVM Toolkit source generators have been disabled on the current configuration, as they need Roslyn 4.x in order to work. The MVVM Toolkit will work just fine, but features relying on the source generators will not be available."/> |
42 | 44 | </Target>
|
43 |
| - |
| 45 | + |
44 | 46 | <!-- Remove the analyzer if Roslyn is missing -->
|
45 | 47 | <Target Name="_MVVMToolkitRemoveAnalyzersForRosynNotFound"
|
46 | 48 | Condition="'$(CSharpCoreTargetsPath)' == ''"
|
|
0 commit comments