-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathResearchDataManagementPlatform.csproj
More file actions
109 lines (108 loc) · 4.53 KB
/
ResearchDataManagementPlatform.csproj
File metadata and controls
109 lines (108 loc) · 4.53 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ProjectGuid>{550988FD-F1FA-41D8-BE0F-00B4DE47D320}</ProjectGuid>
<OutputType>WinExe</OutputType>
<TargetFramework>$(TargetFramework)-windows</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<UseWindowsForms>true</UseWindowsForms>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1701;1702;CS1591;NU1701</NoWarn>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<PublishSingleFile>true</PublishSingleFile>
<ServerGarbageCollection>true</ServerGarbageCollection>
</PropertyGroup>
<PropertyGroup>
</PropertyGroup>
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ApplicationIcon>Icon\main.ico</ApplicationIcon>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Updates\UpdaterUI.cs" />
<Compile Remove="Updates\UpdaterUI.Designer.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Updates\UpdaterUI.resx" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ConsoleControl" />
<PackageReference Include="Autoupdater.NET.Official" />
<PackageReference Include="DockPanelSuite.ThemeVS2015" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\SharedAssemblyInfo.cs" Link="SharedAssemblyInfo.cs" />
<Compile Update="RDMPMainForm.cs" />
<Compile Update="RDMPMainForm.Designer.cs">
<DependentUpon>RDMPMainForm.cs</DependentUpon>
</Compile>
<Compile Update="WindowManagement\HomePane\HomeUI.cs" />
<Compile Update="WindowManagement\HomePane\HomeUI.Designer.cs">
<DependentUpon>HomeUI.cs</DependentUpon>
</Compile>
<Compile Update="WindowManagement\Licenses\LicenseUI.cs" />
<Compile Update="WindowManagement\Licenses\LicenseUI.Designer.cs">
<DependentUpon>LicenseUI.cs</DependentUpon>
</Compile>
<Compile Update="WindowManagement\TopBar\RDMPTaskBarUI.cs" />
<Compile Update="WindowManagement\TopBar\RDMPTaskBarUI.Designer.cs">
<DependentUpon>RDMPTaskBarUI.cs</DependentUpon>
</Compile>
<Compile Update="Menus\RDMPTopMenuStripUI.cs" />
<Compile Update="Menus\RDMPTopMenuStripUI.Designer.cs">
<DependentUpon>RDMPTopMenuStripUI.cs</DependentUpon>
</Compile>
<Content Include="Icon\main.ico" />
<Content Include="Icon\main.png" />
<EmbeddedResource Update="RDMPMainForm.resx">
<DependentUpon>RDMPMainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Update="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Content Include="..\..\Tools\BundleUpSourceIntoZip\output\SourceCodeForSelfAwareness.zip">
<Link>SourceCodeForSelfAwareness.zip</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<EmbeddedResource Update="WindowManagement\HomePane\HomeUI.resx">
<DependentUpon>HomeUI.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="WindowManagement\Licenses\LicenseUI.resx">
<DependentUpon>LicenseUI.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="WindowManagement\TopBar\RDMPTaskBarUI.resx">
<DependentUpon>RDMPTaskBarUI.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="Menus\RDMPTopMenuStripUI.resx">
<DependentUpon>RDMPTopMenuStripUI.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="..\..\LICENSE">
<Link>WindowManagement\Licenses\LICENSE</Link>
</EmbeddedResource>
<EmbeddedResource Include="..\..\LIBRARYLICENSES">
<Link>WindowManagement\Licenses\LIBRARYLICENSES</Link>
</EmbeddedResource>
<None Include="DockingInfrastructure.cd" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Update="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<DesignTime>True</DesignTime>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Rdmp.UI\Rdmp.UI.csproj" />
</ItemGroup>
</Project>