aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Build_PMR.bat
blob: c1086fb9e19f84fb9f2bd3919009a49dd983a6ba (plain)
1
2
3
4
5
6
7
8
9
@echo Building Protobuf CLI Compiler...
cd Visual_Studio
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\devenv.exe" Utilities\Tango.Protobuf.CLI\Tango.Protobuf.CLI.csproj /build Debug
@echo.
@echo Building Tango.PMR project...
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\devenv.exe" Tango.PMR\Tango.PMR.csproj /rebuild Debug
@echo.
@echo Done!
Pause
ight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.DispenserAnalyzer.UI.Analysis
{
    public class AnalysisPlotValue
    {
        public double X { get; set; }
        public double Y { get; set; }
    }
}