Skip to content

Commit ea536c7

Browse files
Add RegFree NetClient
1 parent 2d6d267 commit ea536c7

14 files changed

+355
-10
lines changed

ComClient/ComClient.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ int main()
4545
::CoUninitialize();
4646

4747
if (FAILED(hr))
48+
{
49+
::printf("Failure: 0x%08x\n", hr);
4850
return EXIT_FAILURE;
51+
}
4952

5053
return EXIT_SUCCESS;
5154
}

ComClient_RegFree/App.manifest

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
2+
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
3+
<assemblyIdentity
4+
type="win32"
5+
name="ComClient_RegFree"
6+
version="1.0.0.0"/>
7+
8+
<dependency>
9+
<dependentAssembly>
10+
<!-- RegFree COM -->
11+
<assemblyIdentity
12+
type="win32"
13+
name="NetServer"
14+
version="1.0.0.0"/>
15+
</dependentAssembly>
16+
</dependency>
17+
</assembly>
+208
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,208 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Release|Win32">
9+
<Configuration>Release</Configuration>
10+
<Platform>Win32</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Debug|x64">
13+
<Configuration>Debug</Configuration>
14+
<Platform>x64</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<PropertyGroup Label="Globals">
22+
<VCProjectVersion>15.0</VCProjectVersion>
23+
<ProjectGuid>{0C44BFE0-DB17-455A-BD8A-76249F941A40}</ProjectGuid>
24+
<Keyword>Win32Proj</Keyword>
25+
<RootNamespace>ComClientRegFree</RootNamespace>
26+
<WindowsTargetPlatformVersion>10.0.14393.0</WindowsTargetPlatformVersion>
27+
</PropertyGroup>
28+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
29+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
30+
<ConfigurationType>Application</ConfigurationType>
31+
<UseDebugLibraries>true</UseDebugLibraries>
32+
<PlatformToolset>v141</PlatformToolset>
33+
<CharacterSet>Unicode</CharacterSet>
34+
</PropertyGroup>
35+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
36+
<ConfigurationType>Application</ConfigurationType>
37+
<UseDebugLibraries>false</UseDebugLibraries>
38+
<PlatformToolset>v141</PlatformToolset>
39+
<WholeProgramOptimization>true</WholeProgramOptimization>
40+
<CharacterSet>Unicode</CharacterSet>
41+
</PropertyGroup>
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
43+
<ConfigurationType>Application</ConfigurationType>
44+
<UseDebugLibraries>true</UseDebugLibraries>
45+
<PlatformToolset>v141</PlatformToolset>
46+
<CharacterSet>Unicode</CharacterSet>
47+
</PropertyGroup>
48+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
49+
<ConfigurationType>Application</ConfigurationType>
50+
<UseDebugLibraries>false</UseDebugLibraries>
51+
<PlatformToolset>v141</PlatformToolset>
52+
<WholeProgramOptimization>true</WholeProgramOptimization>
53+
<CharacterSet>Unicode</CharacterSet>
54+
</PropertyGroup>
55+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
56+
<ImportGroup Label="ExtensionSettings">
57+
</ImportGroup>
58+
<ImportGroup Label="Shared">
59+
</ImportGroup>
60+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
61+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
62+
</ImportGroup>
63+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
64+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
65+
</ImportGroup>
66+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
67+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
68+
</ImportGroup>
69+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
70+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
71+
</ImportGroup>
72+
<PropertyGroup Label="UserMacros" />
73+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
74+
<LinkIncremental>true</LinkIncremental>
75+
<CustomBuildAfterTargets>Build</CustomBuildAfterTargets>
76+
</PropertyGroup>
77+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
78+
<LinkIncremental>true</LinkIncremental>
79+
<CustomBuildAfterTargets>Build</CustomBuildAfterTargets>
80+
</PropertyGroup>
81+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
82+
<LinkIncremental>false</LinkIncremental>
83+
<CustomBuildAfterTargets>Build</CustomBuildAfterTargets>
84+
</PropertyGroup>
85+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
86+
<LinkIncremental>false</LinkIncremental>
87+
<CustomBuildAfterTargets>Build</CustomBuildAfterTargets>
88+
</PropertyGroup>
89+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
90+
<ClCompile>
91+
<PrecompiledHeader>Use</PrecompiledHeader>
92+
<WarningLevel>Level3</WarningLevel>
93+
<Optimization>Disabled</Optimization>
94+
<SDLCheck>true</SDLCheck>
95+
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
96+
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
97+
</ClCompile>
98+
<Link>
99+
<SubSystem>Console</SubSystem>
100+
<GenerateDebugInformation>true</GenerateDebugInformation>
101+
</Link>
102+
<Manifest>
103+
<AdditionalManifestFiles>App.manifest %(AdditionalManifestFiles)</AdditionalManifestFiles>
104+
</Manifest>
105+
<CustomBuildStep>
106+
<Command>copy /y "$(SolutionDir)\NetServer\NetServer.manifest" "$(TargetDir)"
107+
copy /y "$(SolutionDir)\NetServer\bin\$(ConfigurationName)\NetServer.dll" "$(TargetDir)"</Command>
108+
<TreatOutputAsContent>true</TreatOutputAsContent>
109+
<Outputs>$(TargetDir)NetServer.manifest;$(TargetDir)NetServer.dll;%(Outputs)</Outputs>
110+
</CustomBuildStep>
111+
</ItemDefinitionGroup>
112+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
113+
<ClCompile>
114+
<PrecompiledHeader>Use</PrecompiledHeader>
115+
<WarningLevel>Level3</WarningLevel>
116+
<Optimization>Disabled</Optimization>
117+
<SDLCheck>true</SDLCheck>
118+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
119+
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
120+
</ClCompile>
121+
<Link>
122+
<SubSystem>Console</SubSystem>
123+
<GenerateDebugInformation>true</GenerateDebugInformation>
124+
</Link>
125+
<Manifest>
126+
<AdditionalManifestFiles>App.manifest %(AdditionalManifestFiles)</AdditionalManifestFiles>
127+
</Manifest>
128+
<CustomBuildStep>
129+
<Command>copy /y "$(SolutionDir)\NetServer\NetServer.manifest" "$(TargetDir)"
130+
copy /y "$(SolutionDir)\NetServer\bin\$(ConfigurationName)\NetServer.dll" "$(TargetDir)"</Command>
131+
<TreatOutputAsContent>true</TreatOutputAsContent>
132+
<Outputs>$(TargetDir)NetServer.manifest;$(TargetDir)NetServer.dll;%(Outputs)</Outputs>
133+
</CustomBuildStep>
134+
</ItemDefinitionGroup>
135+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
136+
<ClCompile>
137+
<PrecompiledHeader>Use</PrecompiledHeader>
138+
<WarningLevel>Level3</WarningLevel>
139+
<Optimization>MaxSpeed</Optimization>
140+
<FunctionLevelLinking>true</FunctionLevelLinking>
141+
<IntrinsicFunctions>true</IntrinsicFunctions>
142+
<SDLCheck>true</SDLCheck>
143+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
144+
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
145+
</ClCompile>
146+
<Link>
147+
<SubSystem>Console</SubSystem>
148+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
149+
<OptimizeReferences>true</OptimizeReferences>
150+
<GenerateDebugInformation>true</GenerateDebugInformation>
151+
</Link>
152+
<Manifest>
153+
<AdditionalManifestFiles>App.manifest %(AdditionalManifestFiles)</AdditionalManifestFiles>
154+
</Manifest>
155+
<CustomBuildStep>
156+
<Command>copy /y "$(SolutionDir)\NetServer\NetServer.manifest" "$(TargetDir)"
157+
copy /y "$(SolutionDir)\NetServer\bin\$(ConfigurationName)\NetServer.dll" "$(TargetDir)"</Command>
158+
<TreatOutputAsContent>true</TreatOutputAsContent>
159+
<Outputs>$(TargetDir)NetServer.manifest;$(TargetDir)NetServer.dll;%(Outputs)</Outputs>
160+
</CustomBuildStep>
161+
</ItemDefinitionGroup>
162+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
163+
<ClCompile>
164+
<PrecompiledHeader>Use</PrecompiledHeader>
165+
<WarningLevel>Level3</WarningLevel>
166+
<Optimization>MaxSpeed</Optimization>
167+
<FunctionLevelLinking>true</FunctionLevelLinking>
168+
<IntrinsicFunctions>true</IntrinsicFunctions>
169+
<SDLCheck>true</SDLCheck>
170+
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
171+
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
172+
</ClCompile>
173+
<Link>
174+
<SubSystem>Console</SubSystem>
175+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
176+
<OptimizeReferences>true</OptimizeReferences>
177+
<GenerateDebugInformation>true</GenerateDebugInformation>
178+
</Link>
179+
<Manifest>
180+
<AdditionalManifestFiles>App.manifest %(AdditionalManifestFiles)</AdditionalManifestFiles>
181+
</Manifest>
182+
<CustomBuildStep>
183+
<Command>copy /y "$(SolutionDir)\NetServer\NetServer.manifest" "$(TargetDir)"
184+
copy /y "$(SolutionDir)\NetServer\bin\$(ConfigurationName)\NetServer.dll" "$(TargetDir)"</Command>
185+
<TreatOutputAsContent>true</TreatOutputAsContent>
186+
<Outputs>$(TargetDir)NetServer.manifest;$(TargetDir)NetServer.dll;%(Outputs)</Outputs>
187+
</CustomBuildStep>
188+
</ItemDefinitionGroup>
189+
<ItemGroup>
190+
<ClInclude Include="stdafx.h" />
191+
<ClInclude Include="targetver.h" />
192+
</ItemGroup>
193+
<ItemGroup>
194+
<ClCompile Include="..\ComClient\ComClient.cpp" />
195+
<ClCompile Include="stdafx.cpp">
196+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
197+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
198+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
199+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
200+
</ClCompile>
201+
</ItemGroup>
202+
<ItemGroup>
203+
<Manifest Include="App.manifest" />
204+
</ItemGroup>
205+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
206+
<ImportGroup Label="ExtensionTargets">
207+
</ImportGroup>
208+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="Source Files">
5+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
6+
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
7+
</Filter>
8+
<Filter Include="Header Files">
9+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
10+
<Extensions>h;hh;hpp;hxx;hm;inl;inc;ipp;xsd</Extensions>
11+
</Filter>
12+
<Filter Include="Resource Files">
13+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
14+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
15+
</Filter>
16+
</ItemGroup>
17+
<ItemGroup>
18+
<ClInclude Include="stdafx.h">
19+
<Filter>Header Files</Filter>
20+
</ClInclude>
21+
<ClInclude Include="targetver.h">
22+
<Filter>Header Files</Filter>
23+
</ClInclude>
24+
</ItemGroup>
25+
<ItemGroup>
26+
<ClCompile Include="stdafx.cpp">
27+
<Filter>Source Files</Filter>
28+
</ClCompile>
29+
<ClCompile Include="..\ComClient\ComClient.cpp">
30+
<Filter>Source Files</Filter>
31+
</ClCompile>
32+
</ItemGroup>
33+
<ItemGroup>
34+
<Manifest Include="App.manifest">
35+
<Filter>Source Files</Filter>
36+
</Manifest>
37+
</ItemGroup>
38+
</Project>

ComClient_RegFree/stdafx.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// stdafx.cpp : source file that includes just the standard includes
2+
// ComClient_RegFree.pch will be the pre-compiled header
3+
// stdafx.obj will contain the pre-compiled type information
4+
5+
#include "stdafx.h"
6+
7+
// TODO: reference any additional headers you need in STDAFX.H
8+
// and not in this file

ComClient_RegFree/stdafx.h

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// stdafx.h : include file for standard system include files,
2+
// or project specific include files that are used frequently, but
3+
// are changed infrequently
4+
//
5+
6+
#pragma once
7+
8+
#include "targetver.h"
9+
10+
#include <stdio.h>
11+
#include <tchar.h>
12+
13+
14+
15+
// TODO: reference additional headers your program requires here

ComClient_RegFree/targetver.h

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#pragma once
2+
3+
// Including SDKDDKVer.h defines the highest available Windows platform.
4+
5+
// If you wish to build your application for a previous Windows platform, include WinSDKVer.h and
6+
// set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h.
7+
8+
#include <SDKDDKVer.h>

ComInterop.sln

+21
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ComServer", "ComServer\ComServer.vcxproj", "{693824CA-5F5D-4714-9212-53799CAF3A9A}"
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetClient", "NetClient\NetClient.csproj", "{DF58A8FB-0C4E-4499-B06F-5843ECEB5A63}"
9+
ProjectSection(ProjectDependencies) = postProject
10+
{693824CA-5F5D-4714-9212-53799CAF3A9A} = {693824CA-5F5D-4714-9212-53799CAF3A9A}
11+
EndProjectSection
912
EndProject
1013
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetClient_RegFree", "NetClient_RegFree\NetClient_RegFree.csproj", "{AE87BBA2-0A6B-4EDD-B10F-4D50DCFD25C4}"
1114
ProjectSection(ProjectDependencies) = postProject
@@ -15,6 +18,14 @@ EndProject
1518
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetServer", "NetServer\NetServer.csproj", "{8F7988CB-2824-4479-B8A1-DD07BABDF957}"
1619
EndProject
1720
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ComClient", "ComClient\ComClient.vcxproj", "{E34CE8A4-4A28-4AE1-B825-8BC1EC0093EC}"
21+
ProjectSection(ProjectDependencies) = postProject
22+
{8F7988CB-2824-4479-B8A1-DD07BABDF957} = {8F7988CB-2824-4479-B8A1-DD07BABDF957}
23+
EndProjectSection
24+
EndProject
25+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ComClient_RegFree", "ComClient_RegFree\ComClient_RegFree.vcxproj", "{0C44BFE0-DB17-455A-BD8A-76249F941A40}"
26+
ProjectSection(ProjectDependencies) = postProject
27+
{8F7988CB-2824-4479-B8A1-DD07BABDF957} = {8F7988CB-2824-4479-B8A1-DD07BABDF957}
28+
EndProjectSection
1829
EndProject
1930
Global
2031
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -84,6 +95,16 @@ Global
8495
{E34CE8A4-4A28-4AE1-B825-8BC1EC0093EC}.Release|x64.Build.0 = Release|x64
8596
{E34CE8A4-4A28-4AE1-B825-8BC1EC0093EC}.Release|x86.ActiveCfg = Release|Win32
8697
{E34CE8A4-4A28-4AE1-B825-8BC1EC0093EC}.Release|x86.Build.0 = Release|Win32
98+
{0C44BFE0-DB17-455A-BD8A-76249F941A40}.Debug|Any CPU.ActiveCfg = Debug|Win32
99+
{0C44BFE0-DB17-455A-BD8A-76249F941A40}.Debug|x64.ActiveCfg = Debug|x64
100+
{0C44BFE0-DB17-455A-BD8A-76249F941A40}.Debug|x64.Build.0 = Debug|x64
101+
{0C44BFE0-DB17-455A-BD8A-76249F941A40}.Debug|x86.ActiveCfg = Debug|Win32
102+
{0C44BFE0-DB17-455A-BD8A-76249F941A40}.Debug|x86.Build.0 = Debug|Win32
103+
{0C44BFE0-DB17-455A-BD8A-76249F941A40}.Release|Any CPU.ActiveCfg = Release|Win32
104+
{0C44BFE0-DB17-455A-BD8A-76249F941A40}.Release|x64.ActiveCfg = Release|x64
105+
{0C44BFE0-DB17-455A-BD8A-76249F941A40}.Release|x64.Build.0 = Release|x64
106+
{0C44BFE0-DB17-455A-BD8A-76249F941A40}.Release|x86.ActiveCfg = Release|Win32
107+
{0C44BFE0-DB17-455A-BD8A-76249F941A40}.Release|x86.Build.0 = Release|Win32
87108
EndGlobalSection
88109
GlobalSection(SolutionProperties) = preSolution
89110
HideSolutionNode = FALSE

ComServer/ComServer.cpp

-363 Bytes
Binary file not shown.

NetClient_RegFree/NetClient_RegFree.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<DefineConstants>DEBUG;TRACE</DefineConstants>
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>
24+
<Prefer32Bit>true</Prefer32Bit>
2425
</PropertyGroup>
2526
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2627
<PlatformTarget>AnyCPU</PlatformTarget>

NetServer/NetServer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public double ComputePi()
1919
{
2020
double sum = 0.0;
2121
int sign = 1;
22-
for (int i = 0; i < 64; ++i)
22+
for (int i = 0; i < 1024; ++i)
2323
{
2424
sum += sign / (2.0 * i + 1.0);
2525
sign *= -1;

NetServer/NetServer.csproj

+3
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,8 @@
4343
<Compile Include="NetServer.cs" />
4444
<Compile Include="Properties\AssemblyInfo.cs" />
4545
</ItemGroup>
46+
<ItemGroup>
47+
<None Include="NetServer.manifest" />
48+
</ItemGroup>
4649
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
4750
</Project>

0 commit comments

Comments
 (0)