-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLinuxProxyChanger.csproj
More file actions
36 lines (29 loc) · 1010 Bytes
/
LinuxProxyChanger.csproj
File metadata and controls
36 lines (29 loc) · 1010 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Authors>L. Gmann</Authors>
<Company>First-Coder</Company>
<Copyright>L. Gmann</Copyright>
<PackageProjectUrl>https://first-coder.de/</PackageProjectUrl>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<FileVersion>1.0.1.0</FileVersion>
<Version>1.0.1</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="settings.json" />
</ItemGroup>
<ItemGroup>
<Content Include="settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<Resource Include="settings.json" />
</ItemGroup>
<ProjectExtensions><VisualStudio><UserProperties /></VisualStudio></ProjectExtensions>
</Project>