-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathModule.csproj
More file actions
121 lines (121 loc) · 4.85 KB
/
Module.csproj
File metadata and controls
121 lines (121 loc) · 4.85 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<GenerateMSBuildEditorConfigFile>false</GenerateMSBuildEditorConfigFile>
<LangVersion>latest</LangVersion>
<OutputType>Library</OutputType>
<RuntimeIdentifier>win</RuntimeIdentifier>
<RootNamespace>DNN.Modules.UserVoice</RootNamespace>
<AssemblyName>DNN.Modules.UserVoice</AssemblyName>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>bin\Debug\DNN.Modules.UserVoice.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DocumentationFile>bin\Release\DNN.Modules.UserVoice.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup>
<EmbeddedResourceUseDependentUponConvention>true</EmbeddedResourceUseDependentUponConvention>
</PropertyGroup>
<ItemGroup>
<Compile Remove="artifacts\**" />
<Compile Remove="Combined\**" />
<Compile Remove="docs\**" />
<Compile Remove="IntegrationTests\**" />
<Compile Remove="module.web\**" />
<Compile Remove="TestResults\**" />
<Compile Remove="UnitTests\**" />
<Compile Remove="_build\**" />
<EmbeddedResource Remove="artifacts\**" />
<EmbeddedResource Remove="Combined\**" />
<EmbeddedResource Remove="docs\**" />
<EmbeddedResource Remove="IntegrationTests\**" />
<EmbeddedResource Remove="module.web\**" />
<EmbeddedResource Remove="TestResults\**" />
<EmbeddedResource Remove="UnitTests\**" />
<EmbeddedResource Remove="_build\**" />
<None Remove="artifacts\**" />
<None Remove="Combined\**" />
<None Remove="docs\**" />
<None Remove="IntegrationTests\**" />
<None Remove="module.web\**" />
<None Remove="TestResults\**" />
<None Remove="UnitTests\**" />
<None Remove="_build\**" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Configuration" />
<Reference Include="System.Web" />
</ItemGroup>
<ItemGroup>
<Resource Include=".gitignore" />
<Resource Include="resources\views\view.html" />
<Resource Include="LICENSE" />
<Resource Include="manifest.dnn" />
<Resource Include="ReleaseNotes.html" />
<Resource Include="build.cmd" />
<Resource Include="global.json" />
</ItemGroup>
<ItemGroup>
<Content Include=".editorconfig" />
<AdditionalFiles Include="stylecop.json" />
<Content Include="README.md" />
<Content Include="resources\images\module-icon.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNetNuke.Abstractions">
<Version>10.2.1</Version>
</PackageReference>
<PackageReference Include="DotNetNuke.Core">
<Version>10.2.1</Version>
</PackageReference>
<PackageReference Include="DotNetNuke.Instrumentation">
<Version>10.2.1</Version>
</PackageReference>
<PackageReference Include="DotNetNuke.Web">
<Version>10.2.1</Version>
</PackageReference>
<PackageReference Include="DotNetNuke.WebApi">
<Version>10.2.1</Version>
</PackageReference>
<PackageReference Include="EntityFramework">
<Version>6.5.1</Version>
</PackageReference>
<PackageReference Include="FluentValidation">
<Version>11.12.0</Version>
</PackageReference>
<PackageReference Include="Humanizer" Version="3.0.1" />
<PackageReference Include="Microsoft.AspNet.WebApi.Core">
<Version>5.3.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers">
<Version>10.0.102</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Newtonsoft.Json">
<Version>13.0.3</Version>
</PackageReference>
<PackageReference Include="NSwag.Annotations">
<Version>14.6.3</Version>
</PackageReference>
<PackageReference Include="OneOf">
<Version>3.0.271</Version>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers">
<Version>1.1.118</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
</ItemGroup>
</Project>