-
Notifications
You must be signed in to change notification settings - Fork 0
/
Genodf.csproj
30 lines (26 loc) · 993 Bytes
/
Genodf.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.ValueTuple" Version="4.3.1" />
<PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="resources\content.xml">
<LogicalName>content.xml</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="resources\manifest.xml">
<LogicalName>manifest.xml</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="resources\styles.xml">
<LogicalName>styles.xml</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="resources\settings.xml">
<LogicalName>settings.xml</LogicalName>
</EmbeddedResource>
</ItemGroup>
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);test\**</DefaultItemExcludes>
</PropertyGroup>
</Project>