-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEawModinfo.csproj
More file actions
61 lines (53 loc) · 2.55 KB
/
Copy pathEawModinfo.csproj
File metadata and controls
61 lines (53 loc) · 2.55 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>AlamoEngineTools.Modinfo</PackageId>
<Description>.NET implementation of the eaw.modinfo specification (https://github.com/AlamoEngine-Tools/eaw.modinfo) to locate and validate EaW modinfo JSON files.</Description>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<AssemblyName>AET.Modinfo</AssemblyName>
<RootNamespace>AET.Modinfo</RootNamespace>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
</PropertyGroup>
<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<InheritDocEnabled>true</InheritDocEnabled>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\Schemas\3.0.0\languageinfo.json" />
<None Remove="Resources\Schemas\3.0.0\moddependencies.json" />
<None Remove="Resources\Schemas\3.0.0\modinfo.json" />
<None Remove="Resources\Schemas\3.0.0\modref.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Schemas\3.0.0\languageinfo.json" />
<EmbeddedResource Include="Resources\Schemas\3.0.0\moddependencies.json" />
<EmbeddedResource Include="Resources\Schemas\3.0.0\modinfo.json" />
<EmbeddedResource Include="Resources\Schemas\3.0.0\modref.json" />
<EmbeddedResource Include="Resources\Schemas\3.0.0\steamdata.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="IsExternalInit" Version="1.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="JsonSchema.Net" Version="9.2.0" />
<PackageReference Include="Nullable" Version="1.3.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Required" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Semver" Version="3.0.0" />
<PackageReference Include="Testably.Abstractions" Version="10.2.0" />
<PackageReference Include="System.Text.Json" Version="10.0.7" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
</ItemGroup>
</Project>