Skip to content

Commit

Permalink
Assembly versioning for the manager
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaulomatic committed Jul 8, 2018
1 parent f25a82e commit 35e8b40
Showing 1 changed file with 29 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,30 @@
<MonoMacResourcePrefix>Resources</MonoMacResourcePrefix>
<TargetFrameworkIdentifier>Xamarin.Mac</TargetFrameworkIdentifier>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Logixware.SoftEther.Client.Manager</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyTrademarkAttribute>false</GenerateAssemblyTrademarkAttribute>
<GenerateAssemblyCultureAttribute>false</GenerateAssemblyCultureAttribute>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyGuidAttribute>false</GenerateAssemblyGuidAttribute>
</PropertyGroup>
<Import Condition="Exists('..\..\Solution.build.props')" Project="..\..\Solution.build.props" />
<PropertyGroup>
<AssemblyVersionMajor>1</AssemblyVersionMajor>
<AssemblyVersionMinor>0</AssemblyVersionMinor>
<AssemblyVersionBuild>0</AssemblyVersionBuild>
<AssemblyCopyRight>Copyright © 1997 - CURRENT_YEAR Tobias Punke.</AssemblyCopyRight>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
Expand Down Expand Up @@ -68,17 +92,18 @@
<ImageAsset Include="Assets.xcassets\Contents.json" />
</ItemGroup>
<ItemGroup>
<Folder Include="Bullshit" />
<Folder Include="Resources\" />
<Folder Include="Resources\daemon" />
</ItemGroup>
<ItemGroup>
<None Include="Info.plist" />
<None Include="Entitlements.plist" />
<None Include="Properties\AssemblyInfo\AssemblyVersion.txt" />
</ItemGroup>
<ItemGroup>
<Compile Include="Main.cs" />
<Compile Include="AppDelegate.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\AssemblyInfo\AssemblyInfo.cs" />
<Compile Include="ViewController.cs" />
<Compile Include="ViewController.designer.cs">
<DependentUpon>ViewController.cs</DependentUpon>
Expand All @@ -89,7 +114,8 @@
<InterfaceDefinition Include="Resources\en.lproj\Main.storyboard" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\vpnclient\softether-vpnclient-v4.25-9656-rtm-2018.01.15-macos-x64-64bit.tar" />
<Content Include="Resources\daemon\.gitkeep" />
<Content Include="Resources\vpnclient\.gitkeep" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Mac\Xamarin.Mac.CSharp.targets" />
</Project>

0 comments on commit 35e8b40

Please sign in to comment.