-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComAutoWrapper.csproj
More file actions
55 lines (52 loc) · 2.32 KB
/
ComAutoWrapper.csproj
File metadata and controls
55 lines (52 loc) · 2.32 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;x64</Platforms>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<PackageId>ComAutoWrapper</PackageId>
<Version>1.1.5.7</Version>
<Authors>Ferenc Biro</Authors>
<Company>Saját Fejlesztés(chatgt segítségével)</Company>
<Description>Minimalista, könnyen használható .NET wrapper COM automatizáláshoz (Excel, Word, stb.). Magas szintű metódusokkal, erőforráskezeléssel és introspekcióval.</Description>
<PackageTags>COM;Interop;Excel;Word;Automation;Wrapper;LateBinding</PackageTags>
<RepositoryUrl>https://github.com/pmonitor0/ComAutoWrapper</RepositoryUrl> <!-- ha van -->
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/pmonitor0/ComAutoWrapper</PackageProjectUrl>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<AssemblyVersion>1.1.5.7</AssemblyVersion>
<FileVersion>1.1.5.7</FileVersion>
<!-- XML dokumentáció NuGet csomagba -->
<IncludeSymbols>False</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<BaseOutputPath>bin</BaseOutputPath>
<DocumentationFile>bin\Release\net9.0\ComAutoWrapper.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Update="Readme.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>