-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathWinRT.Generator.Core.csproj
More file actions
47 lines (40 loc) · 2.13 KB
/
Copy pathWinRT.Generator.Core.csproj
File metadata and controls
47 lines (40 loc) · 2.13 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsAotCompatible>true</IsAotCompatible>
<DisableRuntimeMarshalling>true</DisableRuntimeMarshalling>
<!-- Common metadata properties for publishing -->
<Description>C#/WinRT Generator core shared infrastructure v$(VersionString)</Description>
<AssemblyTitle>C#/WinRT Generator core shared infrastructure v$(VersionString)</AssemblyTitle>
<Copyright>Copyright (c) Microsoft Corporation. All rights reserved.</Copyright>
<AssemblyVersion>$(AssemblyVersionNumber)</AssemblyVersion>
<FileVersion>$(VersionNumber)</FileVersion>
<!-- Emit the '[module: SkipLocalsInit]' attribute (same as the runtime) -->
<EmitSkipLocalsInitAttribute>true</EmitSkipLocalsInitAttribute>
<!-- Set the root namespace (we ignore the '.Core' suffix) -->
<RootNamespace>WindowsRuntime.Generator</RootNamespace>
<!-- Same settings as the other generator projects -->
<TreatWarningsAsErrors Condition="'$(Configuration)' == 'Release'">true</TreatWarningsAsErrors>
<CodeAnalysisTreatWarningsAsErrors Condition="'$(Configuration)' == 'Release'">true</CodeAnalysisTreatWarningsAsErrors>
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisLevelStyle>latest-all</AnalysisLevelStyle>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<Features>strict</Features>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AsmResolver.DotNet" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="cswinrtimplgen" />
<InternalsVisibleTo Include="cswinrtinteropgen" />
<InternalsVisibleTo Include="cswinrtprojectiongen" />
<InternalsVisibleTo Include="cswinrtprojectionrefgen" />
<InternalsVisibleTo Include="cswinrtwinmdgen" />
<!-- The projection writer library consumes shared helpers (e.g. SignatureComparer.IgnoreVersion). -->
<InternalsVisibleTo Include="WinRT.Projection.Writer" />
</ItemGroup>
</Project>