Compare commits

...

3 Commits

4 changed files with 14 additions and 4 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
VKT5_RemoteConsole/.vs/ VKT5_RemoteConsole/.vs/
VKT5_RemoteConsole/obj/ VKT5_RemoteConsole/obj/
/VKT5_RemoteConsole/bin/Debug/net48 /VKT5_RemoteConsole/bin/

View File

@ -31,6 +31,6 @@ using Lers.Plugins;
// Т.к. мы можем забыть это сделать, то лучше чтобы версия увеличивалась сама. Звездочку можно задать только для версии сборки, // Т.к. мы можем забыть это сделать, то лучше чтобы версия увеличивалась сама. Звездочку можно задать только для версии сборки,
// для версии файла она не работает. Но если не указать версию файла, то она будет равна версии сборки. // для версии файла она не работает. Но если не указать версию файла, то она будет равна версии сборки.
[assembly: AssemblyVersion("3.36.49")] [assembly: AssemblyVersion("3.37.50")]
//[assembly: AssemblyFileVersion("1.0.0.0")] //[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@ -3,8 +3,10 @@
<TargetFramework>net48</TargetFramework> <TargetFramework>net48</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>True</UseWindowsForms> <UseWindowsForms>True</UseWindowsForms>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Lers.Plugins" Version="3.37.0" /> <PackageReference Include="Lers.Plugins" Version="3.39.1" />
<PackageReference Include="System.Resources.Extensions" Version="4.6.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -1,4 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup /> <PropertyGroup />
<ItemGroup>
<Compile Update="Vkt5ConsoleControl.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Vkt5RemoteConsoleForm.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project> </Project>