File tree 2 files changed +38
-3
lines changed 2 files changed +38
-3
lines changed Original file line number Diff line number Diff line change
1
+ using System . Reflection ;
2
+ using System . Runtime . CompilerServices ;
3
+ using System . Runtime . InteropServices ;
4
+
5
+ // 有关程序集的常规信息通过以下
6
+ // 特性集控制。更改这些特性值可修改
7
+ // 与程序集关联的信息。
8
+ [ assembly: AssemblyTitle ( "https://github.com/xiangyuecn/RSA-csharp" ) ]
9
+ [ assembly: AssemblyDescription ( "" ) ]
10
+ [ assembly: AssemblyConfiguration ( "" ) ]
11
+ [ assembly: AssemblyCompany ( "" ) ]
12
+ [ assembly: AssemblyProduct ( "RSA-csharp" ) ]
13
+ [ assembly: AssemblyCopyright ( "Copyright © 2018" ) ]
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 ( "7661a9da-7f07-403a-8e49-5224ae79a009" ) ]
24
+
25
+ // 程序集的版本信息由下面四个值组成:
26
+ //
27
+ // 主版本
28
+ // 次版本
29
+ // 生成号
30
+ // 修订号
31
+ //
32
+ [ assembly: AssemblyVersion ( "1.0.0.0" ) ]
33
+ [ assembly: AssemblyFileVersion ( "1.0.0.0" ) ]
Original file line number Diff line number Diff line change 31
31
<ErrorReport >prompt</ErrorReport >
32
32
<WarningLevel >4</WarningLevel >
33
33
</PropertyGroup >
34
+ <PropertyGroup >
35
+ <StartupObject />
36
+ </PropertyGroup >
34
37
<ItemGroup >
35
38
<Reference Include =" System" />
36
39
<Reference Include =" System.Core" />
42
45
</ItemGroup >
43
46
<ItemGroup >
44
47
<Compile Include =" Program.cs" />
48
+ <Compile Include =" Properties\AssemblyInfo.cs" />
45
49
<Compile Include =" RSA.cs" />
46
50
<Compile Include =" RSA_PEM.cs" />
47
51
<Compile Include =" RSA_Unit.cs" />
48
52
</ItemGroup >
49
- <ItemGroup >
50
- <Folder Include =" Properties\" />
51
- </ItemGroup >
53
+ <ItemGroup />
52
54
<Import Project =" $(MSBuildToolsPath)\Microsoft.CSharp.targets" />
53
55
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
54
56
Other similar extension points exist, see Microsoft.Common.targets.
You can’t perform that action at this time.
0 commit comments