-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathebOS.csproj
More file actions
99 lines (99 loc) · 4.12 KB
/
ebOS.csproj
File metadata and controls
99 lines (99 loc) · 4.12 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
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{DC8CA09A-B920-4483-8432-4209C54AF2F1}</ProjectGuid>
<OutputType>Exe</OutputType>
<NoStandardLibraries>false</NoStandardLibraries>
<AssemblyName>ConsoleApplication</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>ebOS</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Content Include=".gitattributes" />
</ItemGroup>
<ItemGroup>
<Compile Include="OS.cs" />
</ItemGroup>
<ItemGroup>
<None Include=".git\COMMIT_EDITMSG" />
<None Include=".git\config" />
<None Include=".git\description" />
<None Include=".git\FETCH_HEAD" />
<None Include=".git\HEAD" />
<None Include=".git\hooks\applypatch-msg.sample" />
<None Include=".git\hooks\commit-msg.sample" />
<None Include=".git\hooks\fsmonitor-watchman.sample" />
<None Include=".git\hooks\post-update.sample" />
<None Include=".git\hooks\pre-applypatch.sample" />
<None Include=".git\hooks\pre-commit.sample" />
<None Include=".git\hooks\pre-merge-commit.sample" />
<None Include=".git\hooks\pre-push.sample" />
<None Include=".git\hooks\pre-rebase.sample" />
<None Include=".git\hooks\pre-receive.sample" />
<None Include=".git\hooks\prepare-commit-msg.sample" />
<None Include=".git\hooks\push-to-checkout.sample" />
<None Include=".git\hooks\update.sample" />
<None Include=".git\index" />
<None Include=".git\info\exclude" />
<None Include=".git\logs\HEAD" />
<None Include=".git\logs\refs\heads\main" />
<None Include=".git\logs\refs\remotes\origin\HEAD" />
<None Include=".git\logs\refs\remotes\origin\main" />
<None Include=".git\objects\23\13287463f0308d20ac7ac1c96f614fb133ef34" />
<None Include=".git\objects\31\16390401af10a49fb9d146e451557b3090c04f" />
<None Include=".git\objects\4c\500d8d17ca0a3fecb74435758b1b19c0139df0" />
<None Include=".git\objects\52\c801bbe6ae77f1d72c28fa6f6dd723d5751798" />
<None Include=".git\objects\df\e0770424b2a19faf507a501ebfc23be8f54e7b" />
<None Include=".git\refs\heads\main" />
<None Include=".git\refs\remotes\origin\HEAD" />
<None Include=".git\refs\remotes\origin\main" />
<None Include="app.config" />
<None Include="README.md" />
</ItemGroup>
<ItemGroup>
<Folder Include=".git\objects\info\" />
<Folder Include=".git\objects\pack\" />
<Folder Include=".git\refs\tags\" />
<Folder Include=".vs\ebOS\v17\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
<ProjectExtensions>
<VisualStudio AllowExistingFolder="true" />
</ProjectExtensions>
</Project>