Skip to content

Commit e006286

Browse files
authored
Upload register program, you can register as wish
1 parent 56f0682 commit e006286

25 files changed

+1412
-0
lines changed

RegAurora/RegAurora.sln

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RegAurora", "RegAurora\RegAurora.csproj", "{F5C17087-79A2-4F8C-BB82-C5E4D818D238}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Any CPU = Debug|Any CPU
9+
Release|Any CPU = Release|Any CPU
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{F5C17087-79A2-4F8C-BB82-C5E4D818D238}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13+
{F5C17087-79A2-4F8C-BB82-C5E4D818D238}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{F5C17087-79A2-4F8C-BB82-C5E4D818D238}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{F5C17087-79A2-4F8C-BB82-C5E4D818D238}.Release|Any CPU.Build.0 = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

RegAurora/RegAurora.v11.suo

44 KB
Binary file not shown.

RegAurora/RegAurora.v12.suo

53.5 KB
Binary file not shown.

RegAurora/RegAurora/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
5+
</startup>
6+
</configuration>

RegAurora/RegAurora/FlagRed32.ico

4.19 KB
Binary file not shown.

RegAurora/RegAurora/Password.Designer.cs

Lines changed: 79 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

RegAurora/RegAurora/Password.cs

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
using System;
2+
using System.Windows.Forms;
3+
4+
namespace RegAurora
5+
{
6+
public partial class Password : Form
7+
{
8+
public Password()
9+
{
10+
InitializeComponent();
11+
}
12+
13+
private void button1_Click(object sender, EventArgs e) //密码匹配
14+
{
15+
if (textBox1.Text == "aurora")
16+
{
17+
RegMain frm = new RegMain();
18+
frm.Show();
19+
this.Hide();
20+
}
21+
else
22+
{
23+
Application.Exit();
24+
}
25+
}
26+
}
27+
}

RegAurora/RegAurora/Password.resx

Lines changed: 197 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,197 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<root>
3+
<!--
4+
Microsoft ResX Schema
5+
6+
Version 2.0
7+
8+
The primary goals of this format is to allow a simple XML format
9+
that is mostly human readable. The generation and parsing of the
10+
various data types are done through the TypeConverter classes
11+
associated with the data types.
12+
13+
Example:
14+
15+
... ado.net/XML headers & schema ...
16+
<resheader name="resmimetype">text/microsoft-resx</resheader>
17+
<resheader name="version">2.0</resheader>
18+
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
19+
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
20+
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21+
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
22+
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
23+
<value>[base64 mime encoded serialized .NET Framework object]</value>
24+
</data>
25+
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
26+
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
27+
<comment>This is a comment</comment>
28+
</data>
29+
30+
There are any number of "resheader" rows that contain simple
31+
name/value pairs.
32+
33+
Each data row contains a name, and value. The row also contains a
34+
type or mimetype. Type corresponds to a .NET class that support
35+
text/value conversion through the TypeConverter architecture.
36+
Classes that don't support this are serialized and stored with the
37+
mimetype set.
38+
39+
The mimetype is used for serialized objects, and tells the
40+
ResXResourceReader how to depersist the object. This is currently not
41+
extensible. For a given mimetype the value must be set accordingly:
42+
43+
Note - application/x-microsoft.net.object.binary.base64 is the format
44+
that the ResXResourceWriter will generate, however the reader can
45+
read any of the formats listed below.
46+
47+
mimetype: application/x-microsoft.net.object.binary.base64
48+
value : The object must be serialized with
49+
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
50+
: and then encoded with base64 encoding.
51+
52+
mimetype: application/x-microsoft.net.object.soap.base64
53+
value : The object must be serialized with
54+
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
55+
: and then encoded with base64 encoding.
56+
57+
mimetype: application/x-microsoft.net.object.bytearray.base64
58+
value : The object must be serialized into a byte array
59+
: using a System.ComponentModel.TypeConverter
60+
: and then encoded with base64 encoding.
61+
-->
62+
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
63+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
64+
<xsd:element name="root" msdata:IsDataSet="true">
65+
<xsd:complexType>
66+
<xsd:choice maxOccurs="unbounded">
67+
<xsd:element name="metadata">
68+
<xsd:complexType>
69+
<xsd:sequence>
70+
<xsd:element name="value" type="xsd:string" minOccurs="0" />
71+
</xsd:sequence>
72+
<xsd:attribute name="name" use="required" type="xsd:string" />
73+
<xsd:attribute name="type" type="xsd:string" />
74+
<xsd:attribute name="mimetype" type="xsd:string" />
75+
<xsd:attribute ref="xml:space" />
76+
</xsd:complexType>
77+
</xsd:element>
78+
<xsd:element name="assembly">
79+
<xsd:complexType>
80+
<xsd:attribute name="alias" type="xsd:string" />
81+
<xsd:attribute name="name" type="xsd:string" />
82+
</xsd:complexType>
83+
</xsd:element>
84+
<xsd:element name="data">
85+
<xsd:complexType>
86+
<xsd:sequence>
87+
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
88+
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
89+
</xsd:sequence>
90+
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
91+
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
92+
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
93+
<xsd:attribute ref="xml:space" />
94+
</xsd:complexType>
95+
</xsd:element>
96+
<xsd:element name="resheader">
97+
<xsd:complexType>
98+
<xsd:sequence>
99+
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
100+
</xsd:sequence>
101+
<xsd:attribute name="name" type="xsd:string" use="required" />
102+
</xsd:complexType>
103+
</xsd:element>
104+
</xsd:choice>
105+
</xsd:complexType>
106+
</xsd:element>
107+
</xsd:schema>
108+
<resheader name="resmimetype">
109+
<value>text/microsoft-resx</value>
110+
</resheader>
111+
<resheader name="version">
112+
<value>2.0</value>
113+
</resheader>
114+
<resheader name="reader">
115+
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116+
</resheader>
117+
<resheader name="writer">
118+
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119+
</resheader>
120+
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
121+
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
122+
<value>
123+
AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAgBAAAAAAAAAAAAAAAAAAAAAA
124+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACJeWL/e2hP/3NhSv8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA
125+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
126+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIl5Yv97aE//c2FK/wAAAAAAAAAAAAAAAAAA
127+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
128+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiXli/3toT/9zYUr/AAAAAAAA
129+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
130+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACJeWL/e2hP/3Nh
131+
Sv8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
132+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIl5
133+
Yv97aE//c2FK/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
134+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
135+
AAAAAAAAiXli/3toT/9zYUr/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
136+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
137+
AAAAAAAAAAAAAAAAAACJeWL/e2hP/3NhSv8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
138+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
139+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIt6ZP97aE//c2FK/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
140+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
141+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjn1n/3xpUP9zYUr/AAAAAAAAAAAAAAAAAAAAAAAA
142+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
143+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQgGn/fmtT/3NhSv8AAAAAAAAAAAAA
144+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
145+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJOCbf+BblX/dWNM/wAA
146+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
147+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAl4Zx/4Rx
148+
Wf93ZU3/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
149+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
150+
AACaiXT/iHVd/3ppUf8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
151+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
152+
AAAAAAAAAAAAAJ6NeP+LeWH/fWtV/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlL8MiKDCocScw
153+
rbQnMLHlJi+3/yUvvf8lL8T/JC/K0SMu0KkiLtkdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
154+
AAAAAAAAAAAAAAAAAAAAAAAAoZB8/2phi/9fWIX/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMu
155+
0M0oMKj/KjKv/yw1uf8vOcP/MjzO/zVA2f83Q+T/NkLo/y886rQiLtsUAAAAAAAAAAAAAAAAAAAAAAAA
156+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkk4D/KzXM/yQw1v8iLtezIi7YdSIu2UAiLtoZIi7bAyIu
157+
2xkiLttAKTbk/yoyrv8rM7D/LTa7/y85xf8yPc//NUDa/zdE5P86R+7/OUb3/yIu26cAAAAAAAAAAAAA
158+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKiXgv8oMtD/JTHa/yg03v8oNeD/JzPf/yUx
159+
3v8iLtv/JTHf/yk25P8+TP//LTa5/yozr/8tNrv/MDrG/zI90P81Qdv/OETl/zpH8f86R/n/Ii7b2AAA
160+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqpmF/ygy0P8mMtv/Kzji/zA+
161+
6/82Q/P/PEn6/2l0//+LlP//mKD//0pY//8wOsb/KjKu/y03u/8wOsf/Mz7R/zVB3P84ROb/O0n0/zpH
162+
+f8iLtvYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsm4j/KDLQ/ycz
163+
3P8sOOT/MT7s/zdE9P9BTvv/e4X//56m//+utf//P03//zVA2/8pMq3/LTa6/zA6yP8zPtL/NkHd/zhF
164+
6P88Sff/PUr5/yIu29gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK6d
165+
if8oM9H/JzTd/y065f8yQO7/OEX2/0dU/P97hf//nqb//7e9//9VYf//PEn1/yoyrf8sNbj/MDvJ/zM+
166+
1P82Qt7/OEXp/z1K+v9DUPn/Ii7b2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
167+
AAAAAAAArp2J/ygz0f8oNN7/Ljrm/zNA7/85Rvf/TVn9/3uF//+epv//t73//3aA//8+TP//KzOx/yw1
168+
t/8wOsj/Mz7V/zZC3/85Rer/Pkz8/0tX+v8iLtvYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
169+
AAAAAAAAAAAAAAAAAACunYn/KDPS/yk13/8vPOj/NELw/zlH+P9TX/7/e4X//56m//+3vf//k5v//z5M
170+
//8tN7v/KzS0/zA5xf80P9b/NkLg/zlG6/9FU/7/U176/yIu29gAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
171+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK6dif8oM9L/Kjbg/zA86f81QvL/Okj5/1dj/v97hf//nqb//7e9
172+
//+epv//TFn//zE8zP8rM7H/LznC/zQ/1/83Q+H/Okfu/05b//9bZvv/Ii7b2AAAAAAAAAAAAAAAAAAA
173+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArp2J/ygz0v8rN+L/MD7r/zZD8/87SPr/V2P//3uF
174+
//+epv//t73//56m//9eav//NkLi/yoyrv8uN7//Mz/V/zdD4/87SPL/Wmb//2Zx+/8iLtvYAAAAAAAA
175+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACunYn/KDPS/ys44/8xPuz/N0T0/ztJ
176+
+/9XY///e4X//56m//+3vf//nqb//3J9//8+TP3/KTKt/y02uv8zPtH/N0Pk/zxJ9v9pdP//cnz8/yIu
177+
29gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK6dif8oM9L/LDnk/zJA
178+
7v84Rfb/PEr8/1dj//97hf//nqb//7e9//+epv//e4X//0JQ//8rNLT/LDW2/zI8zf83ROT/Qk/5/3aA
179+
//+Aifz/JjLc2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArp2J/ygz
180+
0v8tOub/M0Dv/zlG9/89Sv3/V2P//3uF//+epv//t73//56m//97hf//Slj//yo0u/8nMK3/JzG8/ys2
181+
0v9OW/z/gYr//4uU/f8wPN7YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
182+
AACunYn/LTbP/y065v80QvD/OUf4/z1L/v9XY///e4X//56m//+3vf//m6P//2dz//8zQO3/JS/DeSgw
183+
qwMmMLYhJS/HXkpV7f+Mlf//lp79/ztG4dgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
184+
AAAAAAAAAAAAAK6dif9vaaH/LznS/yo34/8xPu7/OEb3/1Ng/f9zff//cXz9/1xo+v83Q/L/Ljvq/yg0
185+
4ugjLtE6AAAAAAAAAAAAAAAAJDDcUVpk8NWHj/n/Q03j1gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
186+
AAAAAAAAAAAAAAAAAAAAAAAArp2J/6SRe/+Dd4b/Ii7ZbCIu2qEiLtvMIi7b7CIu2/0iLtvsIi7bzCIu
187+
26EiLttsIi7bLwAAAAAAAAAAAAAAAAAAAAAAAAAAIi7bJyIu25QiLttTAAAAAAAAAAAAAAAAAAAAAAAA
188+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACunYn/pJF7/5mHc/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA
189+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
190+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
191+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
192+
AAAAAAAAAAAAAAAAAAAAAAAA/H////x////8f////H////x////8f////H////x////8f////H////x/
193+
///8f////H////x/AD/8fwAf/AAAH/wAAB/8AAAf/AAAH/wAAB/8AAAf/AAAH/wAAB/8AAAf/AAAH/wA
194+
AB/8AAAf/AAAH/wADh/8AB8f/H////////8=
195+
</value>
196+
</data>
197+
</root>

RegAurora/RegAurora/Program.cs

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using System.Windows.Forms;
6+
7+
namespace RegAurora
8+
{
9+
static class Program
10+
{
11+
/// <summary>
12+
/// 应用程序的主入口点。
13+
/// </summary>
14+
[STAThread]
15+
static void Main()
16+
{
17+
Application.EnableVisualStyles();
18+
Application.SetCompatibleTextRenderingDefault(false);
19+
Application.Run(new Password());
20+
}
21+
}
22+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// 有关程序集的常规信息通过以下
6+
// 特性集控制。更改这些特性值可修改
7+
// 与程序集关联的信息。
8+
[assembly: AssemblyTitle("RegAurora")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("RegAurora")]
13+
[assembly: AssemblyCopyright("Copyright © 2013")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// 将 ComVisible 设置为 false 使此程序集中的类型
18+
// 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型,
19+
// 则将该类型上的 ComVisible 特性设置为 true。
20+
[assembly: ComVisible(false)]
21+
22+
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
23+
[assembly: Guid("aac7a5a9-6de0-4db1-8a72-1565794c8ede")]
24+
25+
// 程序集的版本信息由下面四个值组成:
26+
//
27+
// 主版本
28+
// 次版本
29+
// 生成号
30+
// 修订号
31+
//
32+
// 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
33+
// 方法是按如下所示使用“*”:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]

0 commit comments

Comments
 (0)