This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| public class GPSEphemeris | |
| { | |
| // https://cddis.nasa.gov/archive/gnss/products/latest/ultra/ | |
| // Константы эфемерид для первого спутника из файла RINEX | |
| const int PRN = 1; | |
| const int Year = 2010; | |
| const int Month = 7; | |
| const int Day = 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ################################################################################# | |
| # Script for fix nuget package path in .chproj files | |
| # Need for the correct work with git submodules projects | |
| # | |
| # For example <HintPath>..\..\packages\<NUGET_PACKAGE>.dll</HintPath> | |
| # || | |
| # \/ | |
| # <HintPath>$(SolutionDir)packages\<NUGET_PACKAGE>.dll</HintPath> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ################################################################################# | |
| # Update build version at AssemblyInfo.cs by 'git describe' | |
| # | |
| # Author: https://github.com/asvol | |
| # | |
| # For example: | |
| # [assembly: AssemblyInformationalVersion("v1.0.0-0-g1b5771b")] | |
| # /\ |