-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathE2E.SourceGenerators.csproj
More file actions
35 lines (30 loc) · 1.02 KB
/
E2E.SourceGenerators.csproj
File metadata and controls
35 lines (30 loc) · 1.02 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
<!--
E2E.SourceGenerators - Tests source generator output comprehensively.
Validates:
- VsixInfo.g.cs generated with all manifest fields
- {Name}Vsct.g.cs generated with GUID and ID constants
- Generated constants usable in code (compile-time verification)
- String escaping works (quotes, backslashes in paths)
- Generated files appear in Generated/ folder
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.*" />
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.*" PrivateAssets="all" />
</ItemGroup>
<!-- Include assets referenced in manifest -->
<ItemGroup>
<Content Include="LICENSE.txt">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="icon.png">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="preview.png">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
</ItemGroup>
</Project>