-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathObserverOfScience.csproj
131 lines (131 loc) · 5.99 KB
/
ObserverOfScience.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
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
122
123
124
125
126
127
128
129
130
131
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{EB46B7D4-05BD-4BEF-BD0A-8468E03D60A6}</ProjectGuid>
<ProjectTypeGuids>{349C5851-65DF-11DA-9384-00065B846F21};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<RootNamespace>ObserverOfScience</RootNamespace>
<AssemblyName>ObserverOfScience</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
<OutputPath>..\..\bin</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
<AspNet>
<AspNet DisableCodeBehindGeneration="True" />
</AspNet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>True</Optimize>
<OutputPath>..\..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
<Reference Include="System.Data" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Services" />
<Reference Include="System.Xml.Linq" />
<Reference Include="DotNetNuke">
<HintPath>..\..\bin\DotNetNuke.dll</HintPath>
</Reference>
<Reference Include="DotNetNuke.Web">
<HintPath>..\..\bin\DotNetNuke.Web.dll</HintPath>
</Reference>
<Reference Include="Telerik.Web.UI">
<HintPath>..\..\bin\Telerik.Web.UI.dll</HintPath>
</Reference>
<Reference Include="System.Web.Extensions" />
</ItemGroup>
<ItemGroup>
<Folder Include="js\" />
</ItemGroup>
<ItemGroup>
<Content Include="module.css" />
<Content Include="ViewObserverOfScience.ascx" />
<Content Include="SettingsObserverOfScience.ascx" />
<Content Include="EditObserverOfScience.ascx" />
<Content Include="ViewDetailScience.ascx" />
<Content Include="SettingsDetailScience.ascx" />
</ItemGroup>
<ItemGroup>
<None Include="01.00.00.SqlDataProvider" />
<None Include="Uninstall.SqlDataProvider" />
<None Include="App_LocalResources\ViewObserverOfScience.ascx.resx" />
<None Include="App_LocalResources\ViewObserverOfScience.ascx.ru-RU.resx" />
<None Include="App_LocalResources\EditObserverOfScience.ascx.resx" />
<None Include="App_LocalResources\EditObserverOfScience.ascx.ru-RU.resx" />
<None Include="App_LocalResources\SettingsObserverOfScience.ascx.resx" />
<None Include="App_LocalResources\SettingsObserverOfScience.ascx.ru-RU.resx" />
<None Include="ObserverOfScience.dnn" />
<None Include="doc\install.txt" />
<None Include="script1.sql" />
</ItemGroup>
<ItemGroup>
<Compile Include="lib\ObserverOfScienceSettings.cs" />
<Compile Include="lib\AssemblyInfo.cs" />
<Compile Include="components\ObserverOfScienceSettings.cs" />
<Compile Include="ViewObserverOfScience.ascx.cs">
<DependentUpon>ViewObserverOfScience.ascx</DependentUpon>
</Compile>
<Compile Include="ViewObserverOfScience.ascx.designer.cs">
<DependentUpon>ViewObserverOfScience.ascx</DependentUpon>
</Compile>
<Compile Include="SettingsObserverOfScience.ascx.cs">
<DependentUpon>SettingsObserverOfScience.ascx</DependentUpon>
</Compile>
<Compile Include="SettingsObserverOfScience.ascx.designer.cs">
<DependentUpon>SettingsObserverOfScience.ascx</DependentUpon>
</Compile>
<Compile Include="EditObserverOfScience.ascx.cs">
<DependentUpon>EditObserverOfScience.ascx</DependentUpon>
</Compile>
<Compile Include="components\InventionInfo.cs" />
<Compile Include="components\InventionResourceInfo.cs" />
<Compile Include="components\InvTermsInfo.cs" />
<Compile Include="components\ScientistInfo.cs" />
<Compile Include="ViewDetailScience.ascx.cs">
<DependentUpon>ViewDetailScience.ascx</DependentUpon>
</Compile>
<Compile Include="ViewDetailScience.ascx.designer.cs">
<DependentUpon>ViewDetailScience.ascx</DependentUpon>
</Compile>
<Compile Include="SettingsDetailScience.ascx.designer.cs">
<DependentUpon>SettingsDetailScience.ascx</DependentUpon>
</Compile>
<Compile Include="SettingsDetailScience.ascx.cs">
<DependentUpon>SettingsDetailScience.ascx</DependentUpon>
</Compile>
<Compile Include="components\DetailScienceSettings.cs" />
<Compile Include="EditObserverOfScience.ascx.control.cs">
<DependentUpon>EditObserverOfScience.ascx</DependentUpon>
</Compile>
<Compile Include="components\IntroductionInfo.cs" />
<Compile Include="components\PatentInfo.cs" />
<Compile Include="components\ObserverOfScienceController.cs" />
<Compile Include="components\ObserverOfScienceInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
<ProjectExtensions>
<MonoDevelop>
<Properties VerifyCodeBehindFields="True" VerifyCodeBehindEvents="True">
<XspParameters Port="8080" Address="127.0.0.1" SslMode="None" SslProtocol="Default" KeyType="None" CertFile="" KeyFile="" PasswordOptions="None" Password="" Verbose="True" />
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>