Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert to new csproj structure #2

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project>
<PropertyGroup>
<RootNamespace>MountSend</RootNamespace>
<Product>10Micron MountSend</Product>
<Authors>Per Frejvall, Julien Tschäppät</Authors>
<Description>MountSend is a software that allows to send command to 10Micron Mounts (www.10micron.eu). It has initially been developed by Per Frejvall</Description>
<Copyright>Copyright © 2012-2016 Per Frejvall, 2016-2025 Julien Tschäppät</Copyright>
<RepositoryUrl>https://github.com/elendil-software/MountSend/</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageProjectUrl>https://github.com/elendil-software/MountSend/</PackageProjectUrl>
<PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>
<PackageReleaseNotes>https://github.com/elendil-software/MountSend/releases/latest</PackageReleaseNotes>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageTags>Astronomy 10Micron</PackageTags>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
</PropertyGroup>
</Project>



2 changes: 1 addition & 1 deletion MountSend.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MountSendLib", "MountSendLi
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Documentation", "Documentation", "{FEE97E01-7675-4FA3-9BB2-EE70531FFFD4}"
ProjectSection(SolutionItems) = preProject
LICENSE = LICENSE
LICENSE.md = LICENSE.md
README.md = README.md
EndProjectSection
EndProject
Expand Down
6 changes: 0 additions & 6 deletions MountSend/App.config

This file was deleted.

74 changes: 7 additions & 67 deletions MountSend/MountSend.csproj
Original file line number Diff line number Diff line change
@@ -1,73 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{609A67F4-BB37-448A-BD52-E1F24CE445BA}</ProjectGuid>
<TargetFramework>net48</TargetFramework>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MountSend</RootNamespace>
<AssemblyName>MountSend</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFrameworkProfile />
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="MountSend.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="Mountsend.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\MountSendLib\MountSendLib.csproj">
<SetTargetFramework>TargetFramework=net45</SetTargetFramework>
<Project>{86c20107-13c6-427b-b011-6eb924871a74}</Project>
<Name>MountSendLib</Name>
</ProjectReference>
<ProjectReference Include="..\MountSendLib\MountSendLib.csproj" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->

</Project>
35 changes: 0 additions & 35 deletions MountSend/Properties/AssemblyInfo.cs

This file was deleted.

22 changes: 0 additions & 22 deletions MountSendLib/MountSendLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net48</TargetFrameworks>
<RootNamespace>MountSend</RootNamespace>
<Version>3.3.0</Version>
<Authors>Per Frejvall, Julien Tschäppät</Authors>
<Copyright>Copyright © 2012-2016 Per Frejvall, 2016-2019 Julien Tschäppät</Copyright>
<Product>10Micron MountSend</Product>
<PackageProjectUrl>https://github.com/elendil-software/MountSend/</PackageProjectUrl>
<RepositoryUrl>https://github.com/elendil-software/MountSend/</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageId>10MicronMountSend</PackageId>
<Description>MountSend is a software that allows to send command to 10Micron Mounts (www.10micron.eu). It has initially been developed by Per Frejvall</Description>
<PackageReleaseNotes>https://github.com/elendil-software/MountSend/releases/latest</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<AssemblyVersion>3.3.0.0</AssemblyVersion>
<FileVersion>3.3.0.0</FileVersion>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageTags>Astronomy 10Micron</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE.md">
<Pack>True</Pack>
<PackagePath>
</PackagePath>
</None>
</ItemGroup>
</Project>
Loading